archboot/usr/lib/initcpio/install/archboot_efibootmgr

18 lines
275 B
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2013-05-22 09:44:07 +02:00
add_binary "efibootmgr"
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes efibootmgr on an archboot image.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: