changeset 332:df3855726ec7

Rename qemu-image-* to system-image-*, and don't delete it after creating the tarball. (After all, cross-compiler-* and mini-native-* don't. Disk is cheap these days, consistency is nice, and the next stage of the build that uses these files will want the uncompressed ones anyway.)
author Rob Landley <rob@landley.net>
date Mon, 26 May 2008 14:28:11 -0500
parents d2820523ee06
children 77c10235464d
files package-mini-native.sh
diffstat 1 files changed, 6 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/package-mini-native.sh	Wed May 21 17:52:45 2008 -0500
+++ b/package-mini-native.sh	Mon May 26 14:28:11 2008 -0500
@@ -70,22 +70,21 @@
 
 chmod +x "$WORK/run-emulator.sh"
 
-# Create qemu-image-$ARCH.tar.bz2
+# Create system-image-$ARCH.tar.bz2
 
 function shipit()
 {
   cd "$WORK" || dienow
-  rm -rf qemu-image-$ARCH
-  mkdir qemu-image-$ARCH &&
+  rm -rf system-image-$ARCH
+  mkdir system-image-$ARCH &&
   ln {image-$ARCH.ext2,zImage-$ARCH,run-*.sh} \
 	"$SOURCES"/toys/run-with-{distcc,home}.sh \
-	qemu-image-$ARCH
+	system-image-$ARCH
 
   [ $? -ne 0 ] && dienow
 
-  [ "$ARCH" == powerpc ] && ln "$SOURCES"/toys/ppc_rom.bin qemu-image-$ARCH
-  tar cvjf "$BUILD"/qemu-image-$ARCH.tar.bz2 qemu-image-$ARCH &&
-  rm -rf qemu-image-$ARCH
+  [ "$ARCH" == powerpc ] && ln "$SOURCES"/toys/ppc_rom.bin system-image-$ARCH
+  tar cvjf "$BUILD"/system-image-$ARCH.tar.bz2 system-image-$ARCH
 }
 
 shipit