/usr/share/bug/linux-image-3.16.0-6-amd64/include-pci is in linux-image-3.16.0-6-amd64 3.16.56-1+deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | add_pci() {
echo '** PCI devices:' >&3
lspci -nnvv >&3 2>/dev/null || echo 'not available' >&3
echo >&3
}
ask_pci() {
# This information shouldn't vary much between kernel versions, so
# include it anyway.
test $same_system = nop || add_pci
}
|