diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_chroot_sources | 16 | ||||
-rwxr-xr-x | helpers/lh_config | 2 |
2 files changed, 7 insertions, 11 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 51716d1c7..d5e640ce3 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -403,16 +403,12 @@ case "${1}" in rm -rf chroot/var/cache/apt mkdir -p chroot/var/cache/apt/archives/partial - for LIST in ${LH_PACKAGES_LISTS} - do - case "${LIST}" in - stripped|minimal) - # Cleaning apt package lists - rm -rf chroot/var/lib/apt/lists - mkdir -p chroot/var/lib/apt/lists/partial - ;; - esac - done + # Cleaning apt package lists + if [ "${LH_BINARY_INDICES}" = "none" ] + then + rm -rf chroot/var/lib/apt/lists + mkdir -p chroot/var/lib/apt/lists/partial + fi # Remove local package repository rm -rf chroot/root/local-packages diff --git a/helpers/lh_config b/helpers/lh_config index 4b4118699..6e6a330a6 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -38,7 +38,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [-a|--architecture ARCHITECTURE]\n\ \t [-b|--binary-images iso|net|tar|usb-hdd]\n\ \t [--binary-filesystem fat16|fat32]\n\ -\t [--binary-indices enabled|disabled]\n\ +\t [--binary-indices enabled|disabled|none]\n\ \t [--bootappend-install PARAMETER|\"PARAMETERS\"]\n\ \t [--bootappend-live PARAMETER|\"PARAMETERS\"]\n\ \t [--bootloader grub|syslinux|yaboot]\n\ |