diff options
author | Daniel Baumann <daniel@debian.org> | 2011-01-02 10:32:58 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:20:40 +0100 |
commit | 1d2dd20dd6a74df571959d4cea2d53aaee16302f (patch) | |
tree | de637b63d9825d4b4346d19c41584d558bee2941 /scripts/build/lb_binary_grub2 | |
parent | 69513e92791328e23ee856c00d439ae590678b91 (diff) | |
download | vyos-live-build-1d2dd20dd6a74df571959d4cea2d53aaee16302f.tar.gz vyos-live-build-1d2dd20dd6a74df571959d4cea2d53aaee16302f.zip |
Removing legacy support for live-initramfs.
Diffstat (limited to 'scripts/build/lb_binary_grub2')
-rwxr-xr-x | scripts/build/lb_binary_grub2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/lb_binary_grub2 b/scripts/build/lb_binary_grub2 index 34043cadf..5db05fe43 100755 --- a/scripts/build/lb_binary_grub2 +++ b/scripts/build/lb_binary_grub2 @@ -96,7 +96,7 @@ case "${LB_INITRAMFS}" in INITFS="casper" ;; - live-initramfs|live-boot) + live-boot) INITFS="live" ;; esac @@ -109,7 +109,7 @@ case "${LB_BINARY_IMAGES}" in DESTDIR_LIVE="binary/casper" ;; - live-initramfs|live-boot) + live-boot) DESTDIR_LIVE="binary/live" ;; esac @@ -137,7 +137,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}" @@ -153,7 +153,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}" |