Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (c548d76d64e3c03725704cccfdefd96133aacb8a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (c548d76d64e3c03725704cccfdefd96133aacb8a)
  • Date: Thu, 9 Oct 2008 19:54:43 -0500

GIT changes to test cauldron by Justin Boffemmyer <flux AT sourcemage.org>:

scripts/mkiso.sh | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c548d76d64e3c03725704cccfdefd96133aacb8a
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

scripts/mkiso.sh: don't force smgl- in iso name

Made it so that the entire ISO name is configured by the first arg
($1) instead of forcibly prefixing the version with "smgl-". This will
make it easier to make non-release ISOs with custom names, since
mkrelease.sh can handle prepending "smgl-" to the version before
passing the string to mkiso.sh for official releases.

diff --git a/scripts/mkiso.sh b/scripts/mkiso.sh
index 991b8aa..40760ee 100755
--- a/scripts/mkiso.sh
+++ b/scripts/mkiso.sh
@@ -15,7 +15,7 @@ shift $(($OPTIND - 1))
ISO_CHROOT=$1
ISO_VERSION=$2

-mkisofs -R -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot
-boot-load-size 4 -boot-info-table -V SOURCEMAGE -o "smgl-${ISO_VERSION}.iso"
"$ISO_CHROOT"
+mkisofs -R -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot
-boot-load-size 4 -boot-info-table -V SOURCEMAGE -o "${ISO_VERSION}.iso"
"$ISO_CHROOT"

if [[ "$COMPRESS" == yes || -n "$KEEP" ]]
then



  • [SM-Commit] GIT changes to test cauldron by Justin Boffemmyer (c548d76d64e3c03725704cccfdefd96133aacb8a), Justin Boffemmyer, 10/09/2008

Archive powered by MHonArc 2.6.24.

Top of Page