diff options
author | Daniel Baumann <daniel@debian.org> | 2011-07-25 17:15:17 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-07-25 17:15:17 +0200 |
commit | 6b63effdff9ef0c4cb67282b4365cd98fd0586c8 (patch) | |
tree | 2a9adf6d51491a4d4f4d09881f49fe76b0effdbf | |
parent | 2a5263cb399c41e15b70745f665d507a854430d8 (diff) | |
download | vyos-live-build-6b63effdff9ef0c4cb67282b4365cd98fd0586c8.tar.gz vyos-live-build-6b63effdff9ef0c4cb67282b4365cd98fd0586c8.zip |
Using 'live' rather than 'incomplete' for cd_type in .disk on images that include debian-installer with live-installer udeb.
-rwxr-xr-x | scripts/build/lb_binary_disk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index b1c47287b..a7ddef25d 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -124,14 +124,13 @@ case "${LB_DEBIAN_INSTALLER}" in touch binary/.disk/base_installable - echo "not_complete" > binary/.disk/cd_type - if [ "${LB_DEBIAN_INSTALLER}" = "live" ] then + echo "live" > binary/.disk/cd_type echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/INSTALL Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info else + echo "not_complete" > binary/.disk/cd_type echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info - fi cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include |