Package: discover
Version: 2.0.7-2
When using reportbug to report bugs against discover (v2), the report
should include a list of PCI entries the same way the discover1
package does it. The discover1 package contain a small script
/usr/share/bug/discover1 executed by reportbug when bugs are reported
against the package. It list the PCI devices in the machine, and the
kernel modules detected for each device.
This is the content of that script:
#!/bin/sh
PATH=/sbin:$PATH
if which lspci > /dev/null 2>&1; then
echo lspci: >&3
(
LC_ALL=C lspci
LC_ALL=C lspci -n
) | sort >&3
printf "\n" >&3
fi
echo discover: >&3
discover --format="%m:%V %M\n" all >&3
Please include a similar reportbug script for discover version 2.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]