Include module taint flags in bug reports

svn path=/dists/sid/linux-2.6/; revision=18316
This commit is contained in:
Ben Hutchings 2011-11-24 08:33:38 +00:00
parent 33ddc4f886
commit b476ae2bc6
2 changed files with 3 additions and 1 deletions

1
debian/changelog vendored
View File

@ -11,6 +11,7 @@ linux-2.6 (3.1.2-1) UNRELEASED; urgency=low
* Enable BCMA as module, BCMA_HOST_PCI and B43_BCMA (Closes: #649567)
but limit these to devices not supported by brcmsmac
* brcmsmac: Enable as module for all architectures
* Include module taint flags in bug reports
-- Ben Hutchings <ben@decadent.org.uk> Tue, 22 Nov 2011 05:26:25 +0000

View File

@ -1,6 +1,7 @@
add_modules() {
echo '** Loaded modules:' >&3
lsmod >&3
# List modules along with any taint flags
cut -d' ' --output-delimiter='' -f1,7 /proc/modules >&3
echo >&3
}