diff options
author | Daniel Baumann <daniel@debian.org> | 2009-10-20 20:40:09 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:47 +0100 |
commit | 82cbc81b3d291ee86785bc6412de41a5e1516d67 (patch) | |
tree | 2282964ded3c901e0f88fa3b9a7cfcfa7786403f /helpers/lh_binary | |
parent | 74f7986e692305050019cca2c9c74868782e98e9 (diff) | |
download | vyos-live-build-82cbc81b3d291ee86785bc6412de41a5e1516d67.tar.gz vyos-live-build-82cbc81b3d291ee86785bc6412de41a5e1516d67.zip |
Deprecating all dashed forms of commands.
Diffstat (limited to 'helpers/lh_binary')
-rwxr-xr-x | helpers/lh_binary | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/helpers/lh_binary b/helpers/lh_binary index 2b299e772..91e04a480 100755 --- a/helpers/lh_binary +++ b/helpers/lh_binary @@ -27,69 +27,69 @@ Set_defaults Setup_cleanup # Preparing root filesystem -lh_binary_chroot ${*} +lh binary_chroot ${*} if [ "${LH_CHROOT_BUILD}" = "enabled" ] then # Configuring chroot - lh_chroot_devpts install ${*} - lh_chroot_proc install ${*} - lh_chroot_selinuxfs install ${*} - lh_chroot_sysfs install ${*} - lh_chroot_hosts install ${*} - lh_chroot_resolv install ${*} - lh_chroot_hostname install ${*} - lh_chroot_apt install-binary ${*} - lh_chroot_sources install ${*} + lh chroot_devpts install ${*} + lh chroot_proc install ${*} + lh chroot_selinuxfs install ${*} + lh chroot_sysfs install ${*} + lh chroot_hosts install ${*} + lh chroot_resolv install ${*} + lh chroot_hostname install ${*} + lh chroot_apt install-binary ${*} + lh chroot_sources install ${*} fi # Building root filesystem -lh_binary_rootfs ${*} -lh_binary_manifest ${*} -lh_binary_encryption ${*} +lh binary_rootfs ${*} +lh binary_manifest ${*} +lh binary_encryption ${*} # Prepare images -lh_binary_local-packageslists ${*} -lh_binary_linux-image ${*} -lh_binary_debian-installer ${*} -lh_binary_memtest ${*} -lh_binary_grub ${*} -lh_binary_syslinux ${*} -lh_binary_yaboot ${*} -lh_binary_silo ${*} -lh_binary_disk ${*} -lh_binary_win32-loader ${*} -lh_binary_includes ${*} -lh_binary_local-includes ${*} -lh_binary_local-hooks ${*} -lh_binary_md5sum ${*} +lh binary_local-packageslists ${*} +lh binary_linux-image ${*} +lh binary_debian-installer ${*} +lh binary_memtest ${*} +lh binary_grub ${*} +lh binary_syslinux ${*} +lh binary_yaboot ${*} +lh binary_silo ${*} +lh binary_disk ${*} +lh binary_win32-loader ${*} +lh binary_includes ${*} +lh binary_local-includes ${*} +lh binary_local-hooks ${*} +lh binary_md5sum ${*} if [ "${LH_CHROOT_BUILD}" != "enabled" ] then - lh_chroot_devpts install ${*} - lh_chroot_proc install ${*} - lh_chroot_selinuxfs install ${*} - lh_chroot_sysfs install ${*} + lh chroot_devpts install ${*} + lh chroot_proc install ${*} + lh chroot_selinuxfs install ${*} + lh chroot_sysfs install ${*} fi # Building images -lh_binary_iso ${*} -lh_binary_net ${*} -lh_binary_tar ${*} -lh_binary_usb-hdd ${*} -lh_binary_virtual-hdd ${*} +lh binary_iso ${*} +lh binary_net ${*} +lh binary_tar ${*} +lh binary_usb-hdd ${*} +lh binary_virtual-hdd ${*} if [ "${LH_CHROOT_BUILD}" = "enabled" ] then # Deconfiguring chroot rm -f .stage/chroot_sources - lh_chroot_hostname remove ${*} - lh_chroot_resolv remove ${*} - lh_chroot_hosts remove ${*} + lh chroot_hostname remove ${*} + lh chroot_resolv remove ${*} + lh chroot_hosts remove ${*} fi -lh_chroot_apt remove ${*} -lh_chroot_sysfs remove ${*} -lh_chroot_selinuxfs remove ${*} -lh_chroot_proc remove ${*} -lh_chroot_devpts remove ${*} +lh chroot_apt remove ${*} +lh chroot_sysfs remove ${*} +lh chroot_selinuxfs remove ${*} +lh chroot_proc remove ${*} +lh chroot_devpts remove ${*} |