diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:49 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:18:29 +0100 |
commit | da353a5231ad925013d01065768864307c70651a (patch) | |
tree | 589606906e4e8966797f352ec63162cbb4016da0 /helpers/lh_binary | |
parent | 068a51b175546dfeac45c747236817cb41db50d7 (diff) | |
download | vyos-live-build-da353a5231ad925013d01065768864307c70651a.tar.gz vyos-live-build-da353a5231ad925013d01065768864307c70651a.zip |
Adding live-helper 1.0~a4-1.
Diffstat (limited to 'helpers/lh_binary')
-rwxr-xr-x | helpers/lh_binary | 52 |
1 files changed, 25 insertions, 27 deletions
diff --git a/helpers/lh_binary b/helpers/lh_binary index 7641871eb..d9726252b 100755 --- a/helpers/lh_binary +++ b/helpers/lh_binary @@ -22,43 +22,41 @@ USAGE="${PROGRAM} [--force]" Arguments "${@}" -if [ "${FORCE}" = "true" ] -then - OPTIONS="${OPTIONS} --force" -fi +Echo_debug "Init ${PROGRAM}" # Preparing root filesystem -lh_binary_chroot "${OPTIONS}" +lh_binary_chroot "${@}" # Configuring chroot -lh_chroot_proc install "${OPTIONS}" -lh_chroot_sysfs install "${OPTIONS}" -lh_chroot_hosts install "${OPTIONS}" -lh_chroot_resolv install "${OPTIONS}" -lh_chroot_sources install "${OPTIONS}" +lh_chroot_proc install "${@}" +lh_chroot_sysfs install "${@}" +lh_chroot_hosts install "${@}" +lh_chroot_resolv install "${@}" +lh_chroot_sources install "${@}" # Building root filesystem -lh_binary_rootfs "${OPTIONS}" -lh_binary_manifest "${OPTIONS}" -lh_binary_encryption "${OPTIONS}" +lh_binary_rootfs "${@}" +lh_binary_manifest "${@}" +lh_binary_encryption "${@}" # Prepare images -lh_binary_linuximage "${OPTIONS}" -lh_binary_memtest86 "${OPTIONS}" -lh_binary_syslinux "${OPTIONS}" -lh_binary_includes "${OPTIONS}" -lh_binary_localincludes "${OPTIONS}" -lh_binary_md5sum "${OPTIONS}" +lh_binary_linuximage "${@}" +lh_binary_memtest86 "${@}" +lh_binary_grub "${@}" +lh_binary_syslinux "${@}" +lh_binary_includes "${@}" +lh_binary_localincludes "${@}" +lh_binary_md5sum "${@}" # Building images -lh_binary_hdd "${OPTIONS}" -lh_binary_iso "${OPTIONS}" -lh_binary_net "${OPTIONS}" -lh_binary_usb "${OPTIONS}" +lh_binary_hdd "${@}" +lh_binary_iso "${@}" +lh_binary_net "${@}" +lh_binary_usb "${@}" # Deconfiguring chroot rm -f .stage/chroot_sources -lh_chroot_resolv remove "${OPTIONS}" -lh_chroot_hosts remove "${OPTIONS}" -lh_chroot_sysfs remove "${OPTIONS}" -lh_chroot_proc remove "${OPTIONS}" +lh_chroot_resolv remove "${@}" +lh_chroot_hosts remove "${@}" +lh_chroot_sysfs remove "${@}" +lh_chroot_proc remove "${@}" |