Include model information in bug reports

svn path=/dists/trunk/linux-2.6/; revision=14327
This commit is contained in:
Ben Hutchings 2009-10-04 18:49:10 +00:00
parent 89754d6f8a
commit 08ee7482bb
2 changed files with 59 additions and 0 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
linux-2.6 (2.6.31-1~experimental.2) UNRELEASED; urgency=low
[ Ben Hutchings ]
* Include model information in bug reports
-- Ben Hutchings <ben@decadent.org.uk> Sun, 04 Oct 2009 19:48:35 +0100
linux-2.6 (2.6.31-1~experimental.1) experimental; urgency=low
* New upstream release.

View File

@ -0,0 +1,52 @@
grep_model() {
case "$(uname -m)" in
alpha)
egrep '^(system (type|variation|revision)|platform string)\b' /proc/cpuinfo
;;
arm)
egrep '^(Processor|Hardware|Revision)\b' /proc/cpuinfo
;;
i386|ia64|x86_64)
local found=
for name in {sys,product,chassis,bios,board}_{vendor,name,version}; do
if [ -f /sys/class/dmi/id/$name ]; then
echo -n "$name: "
cat /sys/class/dmi/id/$name
found=y
fi
done
test -n "$found"
;;
mips|mips64)
egrep '^(system type|cpu model)\b' /proc/cpuinfo
;;
parisc|parisc64)
egrep '^(model|[hs]version)\b' /proc/cpuinfo
;;
ppc|ppc64)
egrep -i '^(board|machine|model|motherboard|platform|revision|vendor)\b' /proc/cpuinfo
;;
s390|s390x)
egrep '^processor\b' /proc/cpuinfo
;;
sparc|sparc64)
egrep '^(cpu|fpu|pmu|prom|type)\b' /proc/cpuinfo
;;
*)
false
;;
esac
}
add_model() {
local found=
echo '** Model information' >&3
grep_model >&3 2>/dev/null || echo "not available" >&3
echo >&3
}
ask_model() {
# This is still valid as long as the bug is being reported on the same
# system.
add_model
}