archboot/usr/lib/initcpio/install/archboot_installer_common

18 lines
427 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_file "/usr/bin/archboot-update-installer.sh" "/usr/bin/update-installer.sh"
add_file "/usr/bin/archboot-$(uname -m)-create-container.sh"
add_file "/usr/lib/archboot/functions"
2022-02-09 09:34:27 +01:00
add_file "/usr/lib/archboot/container_functions"
}
help ()
{
cat<<HELPEOF
This hook adds basic installer files on an archboot image.
HELPEOF
}