diff options
Diffstat (limited to 'scripts/build/lb_binary_grub')
-rwxr-xr-x | scripts/build/lb_binary_grub | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/lb_binary_grub b/scripts/build/lb_binary_grub index e6662fa28..d75b800db 100755 --- a/scripts/build/lb_binary_grub +++ b/scripts/build/lb_binary_grub @@ -122,7 +122,7 @@ case "${LB_INITRAMFS}" in INITFS="casper" ;; - live-initramfs|live-boot) + live-boot) INITFS="live" ;; esac @@ -135,7 +135,7 @@ case "${LB_BINARY_IMAGES}" in DESTDIR_LIVE="binary/casper" ;; - live-initramfs|live-boot) + live-boot) DESTDIR_LIVE="binary/live" ;; esac @@ -163,7 +163,7 @@ then LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} username=${LB_USERNAME}" ;; - live-initramfs|live-boot) + live-boot) if [ "${LB_USERNAME}" != "user" ] then LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} username=${LB_USERNAME}" @@ -179,7 +179,7 @@ then LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} hostname=${LB_HOSTNAME}" ;; - live-initramfs|live-boot) + live-boot) if [ "${LB_HOSTNAME}" != "debian" ] then LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} hostname=${LB_HOSTNAME}" |