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:53:04 +0200 |
commit | a8eb93e487ba855064da81aaa7a473e337512233 (patch) | |
tree | aea84e865c7da1fc2371bf14a79fd602ce5d3199 /scripts | |
parent | 31ea4e665cceb28745e7178e95d21257d16d99b7 (diff) | |
download | live-build-a8eb93e487ba855064da81aaa7a473e337512233.zip live-build-a8eb93e487ba855064da81aaa7a473e337512233.tar.gz |
Using 'live' rather than 'incomplete' for cd_type in .disk on images that include debian-installer with live-installer udeb.
Diffstat (limited to 'scripts')
-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 fe68a7d..c976cd5 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -123,14 +123,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_DISTRIBUTION}/${LB_ARCHITECTURE}_netinst_udeb_include binary/.disk/udeb_include |