archboot/usr/lib/initcpio/install/archboot_pciutils

17 lines
263 B
Text
Raw Normal View History

#!/usr/bin/env 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
{
2013-05-22 11:37:59 +02:00
add_binary "lspci"
add_binary "setpci"
add_file "/usr/share/hwdata/pci.ids"
2007-02-27 22:21:22 +01:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes pciutils on an archboot image.
2007-02-27 22:21:22 +01:00
HELPEOF
}