archboot/usr/lib/initcpio/install/archboot_firmware

16 lines
291 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 ()
{
2022-03-14 21:32:33 +01:00
# add firmware files and licenses
map add_full_dir "/lib/firmware" "/usr/share/licenses/linux-firmware"
2022-02-02 11:55:15 +01:00
}
help ()
{
cat<<HELPEOF
This hook includes linux-firmware on an archboot image.
HELPEOF
}