archboot/usr/lib/initcpio/install/archboot_installer_common
2023-02-01 18:03:49 +01:00

23 lines
744 B
Bash

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
map add_file "/etc/archboot/defaults" "/usr/lib/archboot/common.sh" \
"/usr/lib/archboot/container.sh" "/usr/bin/archboot-$(uname -m)-create-container.sh" \
"/usr/lib/archboot/login.sh"
add_full_dir "/usr/lib/archboot/update-installer"
add_file "/usr/bin/archboot-update-installer.sh" "/usr/bin/update-installer"
add_file "/usr/share/archboot/gpg/tpowa.gpg"
# use /etc/profile to launch login.sh
echo ". /usr/lib/archboot/login.sh" >> $BUILDROOT/root/.bashrc
}
help ()
{
cat<<HELPEOF
This hook adds basic installer files on an archboot image.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: