From: Michael Prokop Date: Tue, 18 Nov 2008 22:48:27 +0000 (+0100) Subject: Generate ISO with volume label "${GRML_NAME} ${VERSION}" X-Git-Tag: v0.9.6~1 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=168c41b5ba774abe737e998c4f2f3a26544b0cd6 Generate ISO with volume label "${GRML_NAME} ${VERSION}" --- diff --git a/debian/changelog b/debian/changelog index 82f35d1..88961be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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! + * 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 Tue, 18 Nov 2008 23:42:32 +0100 + -- Michael Prokop Tue, 18 Nov 2008 23:47:24 +0100 grml-live (0.9.5) unstable; urgency=low diff --git a/grml-live b/grml-live index 50872ac..9263342 100755 --- a/grml-live +++ b/grml-live @@ -681,8 +681,8 @@ else 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=$?