archboot/usr/lib/initcpio/install/archboot_firmware

19 lines
315 B
Text
Raw Normal View History

2022-02-02 11:55:15 +01:00
#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
# add firmware files
add_full_dir /lib/firmware
### fix licenses
add_full_dir "/usr/share/licenses/linux-firmware"
}
help ()
{
cat<<HELPEOF
This hook includes linux-firmware on an archboot image.
HELPEOF
}