archboot/usr/lib/initcpio/install/archboot_installer

24 lines
718 B
Text
Raw Normal View History

#!/usr/bin/env bash
2008-10-20 22:39:25 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-10-20 22:39:25 +02:00
{
2022-03-14 21:32:33 +01:00
map add_binary genfstab arch-chroot pacstrap \
2022-03-21 12:53:16 +01:00
archboot-"$(uname -m)"-release.sh \
2022-02-09 16:39:36 +01:00
archboot-restore-usbstick.sh isoinfo archboot-copy-mountpoint.sh \
2022-03-14 21:32:33 +01:00
archboot-rsync-backup.sh archboot-binary-check.sh
2022-03-21 22:46:59 +01:00
add_file "/usr/lib/archboot/release.sh"
2021-09-21 11:03:45 +02:00
add_file "/usr/bin/archboot-setup.sh" "/usr/bin/setup"
add_file "/usr/bin/archboot-quickinst.sh" "/usr/bin/quickinst"
2022-03-21 22:46:59 +01:00
add_full_dir "/usr/lib/archboot/installer"
add_file "/etc/archboot/defaults"
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook includes the archboot installer,archinstaller and arch-install-scripts
2021-10-04 11:13:50 +02:00
on an archboot image.
2008-10-20 22:39:25 +02:00
HELPEOF
}