archboot/usr/lib/initcpio/install/archboot_lshw

19 lines
324 B
Text
Raw Normal View History

2021-10-01 16:56:58 +02:00
#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_binary "/usr/bin/lshw"
for i in "manuf oui pnpid"; do
add_file "/usr/share/lshw/$i.txt"
done
add_file "/usr/share/lshw/pnpid.txt"
}
help ()
{
cat <<HELPEOF
This hook will add lshw to your arch boot image.
HELPEOF
}