archboot/usr/lib/initcpio/install/arch_pciutils

17 lines
276 B
Text
Raw Normal View History

2012-05-27 12:04:03 +02:00
#!/bin/bash
2007-02-27 22:21:22 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-02-27 22:21:22 +01:00
{
2012-05-27 12:04:03 +02:00
add_binary "/usr/sbin/lspci"
add_binary "/usr/sbin/setpci"
add_file "/usr/share/hwdata/pci.ids"
2007-02-27 22:21:22 +01:00
}
help ()
{
cat<<HELPEOF
This hook includes pciutils on an arch boot image.
HELPEOF
}