archboot/usr/lib/initcpio/install/archboot_installer

26 lines
810 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
! [ -d "${TEMPDIR}/arch/" ] && mkdir -p ${TEMPDIR}/arch/
add_file "/usr/share/archboot/installer/setup" "/arch/setup"
add_file "/usr/share/archboot/installer/quickinst" "/arch/quickinst"
DOCS=$(mktemp /var/tmp/docs.XXXX)
cp -f /usr/share/archboot/installer/archboot.txt ${DOCS}
gzip -9 ${DOCS}
add_file "${DOCS}.gz" "/arch/archboot.txt.gz"
cp /usr/share/archboot/installer/archboot.txt ${TEMPDIR}/arch/archboot.txt
add_file "/usr/bin/genfstab"
add_file "/usr/bin/arch-chroot"
add_file "/usr/bin/pacstrap"
add_file "/usr/bin/update-installer.sh"
}
help ()
{
cat<<HELPEOF
This hook includes the archboot installer and arch-install-scripts
on an arch boot image.
HELPEOF
}