archboot/lib/initcpio/install/arch_linux_firmware

21 lines
363 B
Text
Raw Normal View History

2010-05-30 22:10:52 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
2011-06-10 08:26:54 +02:00
build ()
2010-05-30 22:10:52 +02:00
{
MODULES=""
BINARIES=""
FILES=""
SCRIPT=""
2010-07-11 16:34:23 +02:00
# add firmware files and licenses
for i in $(pacman -Ql linux-firmware | cut -d ' ' -f2 | grep -v /$); do
2010-05-30 22:10:52 +02:00
add_file "$i"
done
2010-07-11 17:06:53 +02:00
}
2010-05-30 22:10:52 +02:00
help ()
{
cat<<HELPEOF
This hook includes linux_firmware on an arch boot image.
HELPEOF
}