diff options
Diffstat (limited to 'helpers/lh_binary_linux-image')
-rwxr-xr-x | helpers/lh_binary_linux-image | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/helpers/lh_binary_linux-image b/helpers/lh_binary_linux-image index 33c2fbb9a..6795ec412 100755 --- a/helpers/lh_binary_linux-image +++ b/helpers/lh_binary_linux-image @@ -47,32 +47,13 @@ Check_lockfile .lock # Creating lock file Create_lockfile .lock -# Setting destination directory -case "${LH_BINARY_IMAGES}" in - iso) - case "${LH_INITRAMFS}" in - casper) - DESTDIR="binary/casper" - ;; - - live-initramfs) - DESTDIR="binary/live" - ;; - esac - ;; - - net) - DESTDIR="tftpboot" +case "${LH_INITRAMFS}" in + casper) + DESTDIR="binary/casper" ;; - tar|usb-hdd) + live-initramfs) DESTDIR="binary/live" - - # Workaround for syslinux (<< 3.36) which doesn't support long file/path names - if [ "${LH_DISTRIBUTION}" = "etch" ] && [ "${LH_BOOTLOADER}" = "syslinux" ] - then - DESTDIR="binary" - fi ;; esac |