Generate ISO with volume label "${GRML_NAME} ${VERSION}"
authorMichael Prokop <mika@grml.org>
Tue, 18 Nov 2008 22:48:27 +0000 (23:48 +0100)
committerMichael Prokop <mika@grml.org>
Tue, 18 Nov 2008 22:48:27 +0000 (23:48 +0100)
debian/changelog
grml-live

index 82f35d1..88961be 100644 (file)
@@ -26,8 +26,11 @@ grml-live (0.9.6) unstable; urgency=low
   * Provide grml's gpg key via /etc/grml/fai/files/etc/apt/grml.key
     so we support offline operation as well. Based on an idea by
     Thomas Lehmann, thanks!
   * Provide grml's gpg key via /etc/grml/fai/files/etc/apt/grml.key
     so we support offline operation as well. Based on an idea by
     Thomas Lehmann, thanks!
+  * Generate ISO with volume label "${GRML_NAME} ${VERSION}" instead of
+    "grml $VERSION" so we propagate the according grml-name. Thanks to
+    Thomas Lehmann!
 
 
- -- Michael Prokop <mika@grml.org>  Tue, 18 Nov 2008 23:42:32 +0100
+ -- Michael Prokop <mika@grml.org>  Tue, 18 Nov 2008 23:47:24 +0100
 
 grml-live (0.9.5) unstable; urgency=low
 
 
 grml-live (0.9.5) unstable; urgency=low
 
index 50872ac..9263342 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -681,8 +681,8 @@ else
 
    CURRENT_DIR=$(pwd)
    if cd "$BUILD_OUTPUT" ; then
 
    CURRENT_DIR=$(pwd)
    if cd "$BUILD_OUTPUT" ; then
-      log "mkisofs -V 'grml $VERSION' -publisher 'grml-live | grml.org' -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b $BOOT_FILE -o ${ISO_OUTPUT}/${ISO_NAME} ."
-      mkisofs -V "grml $VERSION" -publisher 'grml-live | grml.org' \
+      log "mkisofs -V '${GRML_NAME} ${VERSION}' -publisher 'grml-live | grml.org' -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table -b $BOOT_FILE -o ${ISO_OUTPUT}/${ISO_NAME} ."
+      mkisofs -V "${GRML_NAME} ${VERSION}" -publisher 'grml-live | grml.org' \
               -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table    \
               -b $BOOT_FILE \
               -o "${ISO_OUTPUT}/${ISO_NAME}" . ; RC=$?
               -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table    \
               -b $BOOT_FILE \
               -o "${ISO_OUTPUT}/${ISO_NAME}" . ; RC=$?