diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_chroot | 2 | ||||
-rwxr-xr-x | helpers/lh_binary_debian-installer | 6 | ||||
-rwxr-xr-x | helpers/lh_binary_encryption | 2 | ||||
-rwxr-xr-x | helpers/lh_binary_iso | 2 | ||||
-rwxr-xr-x | helpers/lh_binary_local-packageslists | 2 | ||||
-rwxr-xr-x | helpers/lh_binary_manifest | 4 | ||||
-rwxr-xr-x | helpers/lh_binary_rootfs | 6 | ||||
-rwxr-xr-x | helpers/lh_binary_usb-hdd | 16 | ||||
-rwxr-xr-x | helpers/lh_bootstrap_cdebootstrap | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_hooks | 4 | ||||
-rwxr-xr-x | helpers/lh_chroot_install-packages | 4 | ||||
-rwxr-xr-x | helpers/lh_chroot_interactive | 6 | ||||
-rwxr-xr-x | helpers/lh_chroot_local-hooks | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_local-patches | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_local-preseed | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_preseed | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_sources | 28 | ||||
-rwxr-xr-x | helpers/lh_chroot_symlinks | 2 | ||||
-rwxr-xr-x | helpers/lh_chroot_sysvinit | 4 | ||||
-rwxr-xr-x | helpers/lh_chroot_tasks | 4 | ||||
-rwxr-xr-x | helpers/lh_source_debian | 6 | ||||
-rwxr-xr-x | helpers/lh_source_iso | 2 | ||||
-rwxr-xr-x | helpers/lh_source_usb-hdd | 8 |
23 files changed, 59 insertions, 59 deletions
diff --git a/helpers/lh_binary_chroot b/helpers/lh_binary_chroot index 77ddf4e77..f89c88549 100755 --- a/helpers/lh_binary_chroot +++ b/helpers/lh_binary_chroot @@ -100,7 +100,7 @@ then if [ -e chroot/chroot/"${EXCLUDE}" ] then # Run "rm" inside the chroot so it cannot possibly remove host files. - Chroot "rm -r chroot/${EXCLUDE}" + Chroot chroot "rm -r chroot/${EXCLUDE}" else Echo_warning "Excluded path does not exist: %s" "${EXCLUDE}" fi diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index b6357027d..5dca67948 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -434,16 +434,16 @@ then done # Download .deb's that we just marked as "purged" which caused broken dependencies - Chroot ${_LH_APT_COMMAND} -f dist-upgrade + Chroot chroot ${_LH_APT_COMMAND} -f dist-upgrade # Revert dpkg status file mv chroot/var/lib/dpkg/status.tmp chroot/var/lib/dpkg/status # Download .debs of the required packages - Chroot ${_LH_APT_COMMAND} install ${DI_REQ_PACKAGES} + Chroot chroot ${_LH_APT_COMMAND} install ${DI_REQ_PACKAGES} else # Download .debs of the required packages - Chroot ${_LH_APT_COMMAND} install ${DI_PACKAGES} + Chroot chroot ${_LH_APT_COMMAND} install ${DI_PACKAGES} # Revert dpkg status file mv chroot/var/lib/dpkg/status.tmp chroot/var/lib/dpkg/status diff --git a/helpers/lh_binary_encryption b/helpers/lh_binary_encryption index b45b0b489..df518afd3 100755 --- a/helpers/lh_binary_encryption +++ b/helpers/lh_binary_encryption @@ -102,7 +102,7 @@ do case "${LH_CHROOT_BUILD}" in enabled) - if Chroot aespipe -e ${LH_ENCRYPTION} -T \ + if Chroot chroot aespipe -e ${LH_ENCRYPTION} -T \ < chroot/filesystem.${LH_CHROOT_FILESYSTEM} \ > chroot/filesystem.${LH_CHROOT_FILESYSTEM}.tmp then diff --git a/helpers/lh_binary_iso b/helpers/lh_binary_iso index 8866197b6..b5d3d6ab2 100755 --- a/helpers/lh_binary_iso +++ b/helpers/lh_binary_iso @@ -142,7 +142,7 @@ case "${LH_CHROOT_BUILD}" in mv binary.sh chroot mv binary chroot - Chroot "sh binary.sh" + Chroot chroot "sh binary.sh" # Move image mv chroot/binary chroot/binary.iso ./ diff --git a/helpers/lh_binary_local-packageslists b/helpers/lh_binary_local-packageslists index 7e768013b..d85ca02d8 100755 --- a/helpers/lh_binary_local-packageslists +++ b/helpers/lh_binary_local-packageslists @@ -63,7 +63,7 @@ then Expand_packagelist "${PACKAGESLIST}" "config/binary_local-packageslists" "config/chroot_local-packageslists" > chroot/root/"$(basename ${PACKAGESLIST})" # Downloading additional packages - Chroot "xargs --arg-file=/root/$(basename ${PACKAGESLIST}) apt-get ${APT_OPTIONS} -o Dir::Cache=/binary.deb --download-only install" + Chroot chroot "xargs --arg-file=/root/$(basename ${PACKAGESLIST}) apt-get ${APT_OPTIONS} -o Dir::Cache=/binary.deb --download-only install" # Remove package list rm chroot/root/"$(basename ${PACKAGESLIST})" diff --git a/helpers/lh_binary_manifest b/helpers/lh_binary_manifest index 7b6481ea1..b403dc508 100755 --- a/helpers/lh_binary_manifest +++ b/helpers/lh_binary_manifest @@ -45,7 +45,7 @@ Create_lockfile .lock if [ "${LH_INITRAMFS}" = "casper" ] then # Add filesystem.manifest - Chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest + Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest fi # Add packages.list @@ -55,7 +55,7 @@ This file contains the list of all packages installed in this live system. EOF -Chroot "dpkg -l" >> binary/packages.txt +Chroot chroot "dpkg -l" >> binary/packages.txt cp binary/packages.txt binary.packages diff --git a/helpers/lh_binary_rootfs b/helpers/lh_binary_rootfs index 4d61af400..d6ab9577c 100755 --- a/helpers/lh_binary_rootfs +++ b/helpers/lh_binary_rootfs @@ -147,7 +147,7 @@ case "${LH_CHROOT_FILESYSTEM}" in case "${LH_CHROOT_BUILD}" in enabled) - Chroot "genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot filesystem.${LH_CHROOT_FILESYSTEM}" + Chroot chroot "genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot filesystem.${LH_CHROOT_FILESYSTEM}" # Move image mv chroot/filesystem.${LH_CHROOT_FILESYSTEM} binary/${INITFS} @@ -189,7 +189,7 @@ case "${LH_CHROOT_FILESYSTEM}" in case "${LH_CHROOT_BUILD}" in enabled) - Chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2" + Chroot chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2" # Move image mv chroot/filesystem.jffs2 binary/${INITFS} @@ -263,7 +263,7 @@ case "${LH_CHROOT_FILESYSTEM}" in case "${LH_CHROOT_BUILD}" in enabled) # Create image - Chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}" + Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}" # Move image ${LH_ROOT_COMMAND} mv chroot/filesystem.squashfs binary/${INITFS} diff --git a/helpers/lh_binary_usb-hdd b/helpers/lh_binary_usb-hdd index db3806d45..115321df7 100755 --- a/helpers/lh_binary_usb-hdd +++ b/helpers/lh_binary_usb-hdd @@ -148,10 +148,10 @@ esac case "${LH_CHROOT_BUILD}" in enabled) - Chroot "parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE}" || true - Chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true - Chroot "parted -s ${FREELO} set 1 boot on" || true - Chroot "parted -s ${FREELO} set 1 lba off" || true + Chroot chroot "parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE}" || true + Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true + Chroot chroot "parted -s ${FREELO} set 1 boot on" || true + Chroot chroot "parted -s ${FREELO} set 1 lba off" || true if [ "${LH_BOOTLOADER}" = "syslinux" ] then @@ -196,7 +196,7 @@ esac case "${LH_CHROOT_BUILD}" in enabled) - Chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" + Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" ;; disabled) @@ -226,7 +226,7 @@ find /live/vmlinuz EOM EOF - rootpartition="$(Chroot 'sh grub.sh' 2>/dev/null | grep -A 1 'find /live/vmlinuz' | grep -v 'find /live/vmlinuz')" + rootpartition="$(Chroot chroot 'sh grub.sh' 2>/dev/null | grep -A 1 'find /live/vmlinuz' | grep -v 'find /live/vmlinuz')" usbdev="$(echo $rootpartition | sed -e 's|,[[:digit:]]||')" echo "Root partition is $rootpartition, device is: $usbdev" @@ -239,7 +239,7 @@ EOF #EOM #EOF -#Chroot "sh grub.sh" +#Chroot chroot "sh grub.sh" rm -f chroot/grub.sh fi @@ -252,7 +252,7 @@ if [ "${LH_BOOTLOADER}" = "syslinux" ] then case "${LH_CHROOT_BUILD}" in enabled) - Chroot "syslinux ${FREELO}" + Chroot chroot "syslinux ${FREELO}" ;; disabled) diff --git a/helpers/lh_bootstrap_cdebootstrap b/helpers/lh_bootstrap_cdebootstrap index 66e419f6d..7b260b16c 100755 --- a/helpers/lh_bootstrap_cdebootstrap +++ b/helpers/lh_bootstrap_cdebootstrap @@ -165,7 +165,7 @@ then # Remove cdebootstrap-helper-diverts (needed at least for minimal flavours) case "${LH_PACKAGES_LISTS}" in stripped|minimal) - Chroot "dpkg -P cdebootstrap-helper-diverts" + Chroot chroot "dpkg -P cdebootstrap-helper-diverts" ;; esac diff --git a/helpers/lh_chroot_hooks b/helpers/lh_chroot_hooks index 5922ef355..6621bc130 100755 --- a/helpers/lh_chroot_hooks +++ b/helpers/lh_chroot_hooks @@ -57,7 +57,7 @@ do fi # Executing hook - Chroot "/root/${HOOK}" + Chroot chroot "/root/${HOOK}" # Removing hook rm -f chroot/root/"${HOOK}" @@ -69,5 +69,5 @@ done if [ -n "${LH_HOOKS}" ] && [ "${LH_HOOKS}" != "none" ] then - LH_DEBCONF_FRONTEND="readline" LH_DEBCONF_PRIORITY="low" LH_DEBCONF_NOWARNINGS="no" Chroot "${LH_HOOKS}" + LH_DEBCONF_FRONTEND="readline" LH_DEBCONF_PRIORITY="low" LH_DEBCONF_NOWARNINGS="no" Chroot chroot "${LH_HOOKS}" fi diff --git a/helpers/lh_chroot_install-packages b/helpers/lh_chroot_install-packages index ddd5f739b..4a9305aa1 100755 --- a/helpers/lh_chroot_install-packages +++ b/helpers/lh_chroot_install-packages @@ -50,11 +50,11 @@ then # Installing packages case "${LH_APT}" in apt|apt-get) - Chroot "xargs --arg-file=/root/chroot_packages apt-get ${APT_OPTIONS} install" + Chroot chroot "xargs --arg-file=/root/chroot_packages apt-get ${APT_OPTIONS} install" ;; aptitude) - Chroot "xargs --arg-file=/root/chroot_packages aptitude ${APTITUDE_OPTIONS} install" + Chroot chroot "xargs --arg-file=/root/chroot_packages aptitude ${APTITUDE_OPTIONS} install" ;; esac diff --git a/helpers/lh_chroot_interactive b/helpers/lh_chroot_interactive index b7d34d690..62f76524b 100755 --- a/helpers/lh_chroot_interactive +++ b/helpers/lh_chroot_interactive @@ -50,15 +50,15 @@ Create_lockfile .lock case "${LH_INTERACTIVE}" in enabled|shell) Echo_message "Pausing build: starting interactive shell..." - Chroot "/bin/bash --login" + Chroot chroot "/bin/bash --login" ;; x11) Echo_message "Pausing build: starting interactive X11..." - Chroot "startx" + Chroot chroot "startx" ;; xnest) Echo_message "Pausing build: starting interactive Xnest..." - #Chroot "" # FIXME + #Chroot chroot "" # FIXME ;; esac diff --git a/helpers/lh_chroot_local-hooks b/helpers/lh_chroot_local-hooks index 33718b082..5798aabf1 100755 --- a/helpers/lh_chroot_local-hooks +++ b/helpers/lh_chroot_local-hooks @@ -57,7 +57,7 @@ then fi # Executing hook - Chroot "/root/$(basename ${HOOK})" + Chroot chroot "/root/$(basename ${HOOK})" # Removing hook rm -f chroot/root/"$(basename ${HOOK})" diff --git a/helpers/lh_chroot_local-patches b/helpers/lh_chroot_local-patches index e65562ef4..2884042ad 100755 --- a/helpers/lh_chroot_local-patches +++ b/helpers/lh_chroot_local-patches @@ -56,7 +56,7 @@ then for PATCH in config/chroot_local-patches/* do Echo_message "Applying patch %s..." "${PATCH}" - Chroot "patch -p1" < ${PATCH} + Chroot chroot "patch -p1" < ${PATCH} done # Removing depends diff --git a/helpers/lh_chroot_local-preseed b/helpers/lh_chroot_local-preseed index afdcb4786..fed6613ae 100755 --- a/helpers/lh_chroot_local-preseed +++ b/helpers/lh_chroot_local-preseed @@ -55,7 +55,7 @@ then # Copying local preseed cp "${PRESEED}" chroot/root/preseed - Chroot "debconf-set-selections /root/preseed" + Chroot chroot "debconf-set-selections /root/preseed" # Removing local preseed file rm -f chroot/root/preseed diff --git a/helpers/lh_chroot_preseed b/helpers/lh_chroot_preseed index ce9235e62..09baef703 100755 --- a/helpers/lh_chroot_preseed +++ b/helpers/lh_chroot_preseed @@ -56,7 +56,7 @@ do # Copying preseed cp "${PRESEED}" chroot/root/preseed - Chroot "debconf-set-selections /root/preseed" + Chroot chroot "debconf-set-selections /root/preseed" # Removing preseed file rm -f chroot/root/preseed diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 30b117cb0..e5ddfdb4e 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -108,7 +108,7 @@ case "${1}" in # completed all the indices. case "${LH_BOOTSTRAP_FLAVOUR}" in stripped|minimal) - Chroot "apt-get update" + Chroot chroot "apt-get update" ;; esac @@ -122,13 +122,13 @@ case "${1}" in Install_package # Generate Packages and Packages.gz - echo "cd /root/local-packages && apt-ftparchive packages . > Packages" | Chroot sh + echo "cd /root/local-packages && apt-ftparchive packages . > Packages" | Chroot chroot sh gzip -9 -c chroot/root/local-packages/Packages > chroot/root/local-packages/Packages.gz # Generate Release echo "cd /root/local-packages && apt-ftparchive \ -o APT::FTPArchive::Release::Origin=chroot_local-packages \ - release . > Release" | Chroot sh + release . > Release" | Chroot chroot if [ "${LH_APT_SECURE}" = "enabled" ] then @@ -161,7 +161,7 @@ case "${1}" in Expire-Date: 0 %secring /root/local-package-keyring.sec %pubring /root/local-package-keyring.pub - %commit" | Chroot "gpg --batch --gen-key" || _LH_RET=${?} + %commit" | Chroot chroot "gpg --batch --gen-key" || _LH_RET=${?} case "${_LH_RET}" in ""|2) @@ -180,14 +180,14 @@ case "${1}" in fi # Sign release - Chroot "gpg --no-default-keyring --secret-keyring /root/local-package-keyring.sec \ + Chroot chroot "gpg --no-default-keyring --secret-keyring /root/local-package-keyring.sec \ --keyring /root/local-package-keyring.pub -abs -o \ /root/local-packages/Release.gpg /root/local-packages/Release" # Import key - Chroot "gpg --no-default-keyring --secret-keyring /root/local-package-keyring.sec \ + Chroot chroot "gpg --no-default-keyring --secret-keyring /root/local-package-keyring.sec \ --keyring /root/local-package-keyring.pub --armor \ - --export ${_LH_LOCAL_KEY_EMAIL}" | Chroot "apt-key add -" + --export ${_LH_LOCAL_KEY_EMAIL}" | Chroot chroot "apt-key add -" # Remove temporary keyrings rm chroot/root/local-package-keyring.pub @@ -258,7 +258,7 @@ case "${1}" in if [ "${LH_APT}" = "aptitude" ] && [ ! -x /usr/bin/aptitude ] then - Chroot "apt-get ${APT_OPTIONS} install aptitude" + Chroot chroot "apt-get ${APT_OPTIONS} install aptitude" fi else # Get fresh indices # Check local gpg keys @@ -267,7 +267,7 @@ case "${1}" in for FILE in config/chroot_sources/*.chroot.gpg do cp ${FILE} chroot/root - Chroot "apt-key add /root/$(basename ${FILE})" + Chroot chroot "apt-key add /root/$(basename ${FILE})" rm -f chroot/root/$(basename ${FILE}) done fi @@ -278,7 +278,7 @@ case "${1}" in for PACKAGE in config/chroot_sources/*.deb do cp ${PACKAGE} chroot/root - Chroot "dpkg -i /root/$(basename ${PACKAGE})" + Chroot chroot "dpkg -i /root/$(basename ${PACKAGE})" rm -f chroot/root/$(basename ${PACKAGE}) done fi @@ -286,8 +286,8 @@ case "${1}" in # Installing aptitude if [ "${LH_APT}" = "aptitude" ] && [ ! -x /usr/bin/aptitude ] then - Chroot "apt-get ${APT_OPTIONS} update" - Chroot "apt-get ${APT_OPTIONS} install aptitude" + Chroot chroot "apt-get ${APT_OPTIONS} update" + Chroot chroot "apt-get ${APT_OPTIONS} install aptitude" fi Apt update @@ -297,7 +297,7 @@ case "${1}" in # Installing keyring packages if [ -n "${LH_KEYRING_PACKAGES}" ] then - Chroot "apt-get --yes --force-yes install ${LH_KEYRING_PACKAGES}" + Chroot chroot "apt-get --yes --force-yes install ${LH_KEYRING_PACKAGES}" Apt update fi @@ -395,7 +395,7 @@ case "${1}" in for FILE in config/chroot_sources/*.binary.gpg do cp ${FILE} chroot/root - Chroot "apt-key add /root/$(basename ${FILE})" + Chroot chroot "apt-key add /root/$(basename ${FILE})" rm -f chroot/root/$(basename ${FILE}) done fi diff --git a/helpers/lh_chroot_symlinks b/helpers/lh_chroot_symlinks index aaf1f72e7..06ae2d31b 100755 --- a/helpers/lh_chroot_symlinks +++ b/helpers/lh_chroot_symlinks @@ -54,7 +54,7 @@ Check_package chroot/usr/bin/symlinks symlinks Install_package # Converting symlinks -Chroot "symlinks -c -r -s /" +Chroot chroot "symlinks -c -r -s /" # Removing depends Remove_package diff --git a/helpers/lh_chroot_sysvinit b/helpers/lh_chroot_sysvinit index b0031ffaa..ec8613f84 100755 --- a/helpers/lh_chroot_sysvinit +++ b/helpers/lh_chroot_sysvinit @@ -47,7 +47,7 @@ then # Disable all for FILE in chroot/etc/init.d/* do - Chroot "update-rc.d -f $(basename ${FILE}) remove" + Chroot chroot "update-rc.d -f $(basename ${FILE}) remove" done # Re-enable all required (taken from -f standard chroot) @@ -56,7 +56,7 @@ then if [ -f chroot/var/lib/dpkg/info/${PACKAGE}.postinst ] then # Re-configure if existing - Chroot "/var/lib/dpkg/info/${PACKAGE}.postinst configure" + Chroot chroot "/var/lib/dpkg/info/${PACKAGE}.postinst configure" fi done diff --git a/helpers/lh_chroot_tasks b/helpers/lh_chroot_tasks index 96624773a..395cd3ced 100755 --- a/helpers/lh_chroot_tasks +++ b/helpers/lh_chroot_tasks @@ -64,13 +64,13 @@ then # Installing tasks case "${LH_TASKSEL}" in aptitude) - Chroot "aptitude ${APTITUDE_OPTIONS} install ${LH_TASKS}" + Chroot chroot "aptitude ${APTITUDE_OPTIONS} install ${LH_TASKS}" ;; tasksel) for TASK in ${LH_TASKS} do - Chroot "tasksel --debconf-apt-progress --logstderr install ${TASK}" + Chroot chroot "tasksel --debconf-apt-progress --logstderr install ${TASK}" done ;; esac diff --git a/helpers/lh_source_debian b/helpers/lh_source_debian index 43e49e9e5..14cf531fc 100755 --- a/helpers/lh_source_debian +++ b/helpers/lh_source_debian @@ -54,7 +54,7 @@ then fi # Download sources -Chroot "dpkg --get-selections" | awk '{ print $1 }' > source-selection.txt +Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' > source-selection.txt cat >> source-selection.txt << EOF ${LH_BOOTLOADER} @@ -107,7 +107,7 @@ MISSING="" grep . source-selection.txt | \ while read PACKAGE do - if ! Chroot "apt-get ${APT_OPTIONS} --download-only source ${PACKAGE}" + if ! Chroot chroot "apt-get ${APT_OPTIONS} --download-only source ${PACKAGE}" then MISSING="${MISSING} ${PACKAGE}" fi @@ -123,7 +123,7 @@ EOF for PACKAGE in ${MISSING} do - Chroot "dpkg -l ${PACKAGE}" | tail -n1 >> source/missing-source.txt + Chroot chroot "dpkg -l ${PACKAGE}" | tail -n1 >> source/missing-source.txt done fi diff --git a/helpers/lh_source_iso b/helpers/lh_source_iso index 6c3fc1e39..585e81207 100755 --- a/helpers/lh_source_iso +++ b/helpers/lh_source_iso @@ -101,7 +101,7 @@ cat >> chroot/source.sh << EOF genisoimage ${GENISOIMAGE_OPTIONS} -o source.iso -r -J -l -cache-inodes source EOF -Chroot "sh source.sh" +Chroot chroot "sh source.sh" # Move image mv chroot/source chroot/source.iso ./ diff --git a/helpers/lh_source_usb-hdd b/helpers/lh_source_usb-hdd index c15d22591..7d62afa72 100755 --- a/helpers/lh_source_usb-hdd +++ b/helpers/lh_source_usb-hdd @@ -95,9 +95,9 @@ esac Echo_warning "!!! The following error/warning messages can be ignored !!!" Losetup $FREELO source.img 0 -Chroot "parted -s ${FREELO} mklabel msdos" || true -Chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true -Chroot "parted -s ${FREELO} set 1 lba off" || true +Chroot chroot "parted -s ${FREELO} mklabel msdos" || true +Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true +Chroot chroot "parted -s ${FREELO} set 1 lba off" || true ${LH_LOSETUP} -d ${FREELO} Losetup $FREELO source.img 1 @@ -119,7 +119,7 @@ case "${LH_BINARY_FILESYSTEM}" in ;; esac -Chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" +Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" mkdir -p source.tmp ${LH_ROOT_COMMAND} mount ${FREELO} source.tmp |