archboot/usr/lib/initcpio/install/archboot_firmware

18 lines
362 B
Text
Raw Normal View History

2022-02-02 11:55:15 +01:00
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2022-02-02 11:55:15 +01:00
# 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
}
# vim: set ft=sh ts=4 sw=4 et: