archboot/usr/lib/initcpio/install/arch_prebootloader
2016-05-14 18:30:55 +02:00

17 lines
336 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_file "/usr/share/efitools/efi/PreLoader.efi"
add_file "/usr/share/efitools/efi/HashTool.efi"
add_file "/usr/share/efitools/efi/KeyTool.efi"
}
help ()
{
cat<<HELPEOF
This hook includes prebootloader on an arch boot image.
HELPEOF
}