[Pkg-fglrx-devel] r1331 - fglrx-driver/trunk/debian
Andreas Beckmann
anbe at moszumanska.debian.org
Wed Jan 29 23:52:23 UTC 2014
Author: anbe
Date: 2014-01-29 23:52:23 +0000 (Wed, 29 Jan 2014)
New Revision: 1331
Modified:
fglrx-driver/trunk/debian/bug-script
Log:
report more PCI information
Modified: fglrx-driver/trunk/debian/bug-script
===================================================================
--- fglrx-driver/trunk/debian/bug-script 2014-01-07 00:56:23 UTC (rev 1330)
+++ fglrx-driver/trunk/debian/bug-script 2014-01-29 23:52:23 UTC (rev 1331)
@@ -13,8 +13,9 @@
if which lspci > /dev/null 2>&1; then
printf "VGA-compatible devices on PCI bus:\n"
- LC_ALL=C lspci | grep 'VGA compatible controller:'
- LC_ALL=C lspci -n | grep 'Class 0300:'
+ for device in $(lspci -mn | awk '{ if ($2 == "\"0300\"") { print $1 } }'); do
+ LC_ALL=C lspci -vvnn -s $device
+ done
else
printf "The lspci command was not found; not including PCI data.\n"
fi
More information about the Pkg-fglrx-devel
mailing list