From 0e22bdf0f8d0db3bbd15ca6d0b9c2d8c5395713a Mon Sep 17 00:00:00 2001 From: Tomas M Date: Tue, 4 Sep 2012 21:08:22 -0500 Subject: [PATCH] surround by infomessages --- build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build b/build index 2c98c79..1df07f3 100755 --- a/build +++ b/build @@ -20,6 +20,7 @@ if [ "$(mksquashfs 2>&1 | grep "Xdict-size")" = "" ]; then fi # build initramfs image +echo "Building intramfs image using your current system binaries..." cd initramfs INITRAMFS=$(./initramfs_create "$LIVEKITNAME") cd .. @@ -42,7 +43,8 @@ cp /boot/vmlinuz $BOOT/ # create compressed bundles # ... -# create ISO for CD image (so I can test it) +# create ISO for CD image +echo "Creating ISO file for CD boot..." cd "$LIVEKITDATA" TARGET=/mnt/z if [ ! -d $TARGET ]; then @@ -54,7 +56,9 @@ mkisofs -o "$TARGET/$LIVEKITNAME-$(uname -m).iso" -v -J -R -D -A "$LIVEKITNAME" -b "$LIVEKITNAME"/boot/isolinux.bin -c "$LIVEKITNAME"/boot/isolinux.boot . \ >/dev/null 2>/dev/null +echo "Creating TAR for USB boot..." tar -c ./* > "$TARGET/$LIVEKITNAME-$(uname -m).tar" cd .. rm -Rf "$LIVEKITDATA" +echo "finished. Find your result in $TARGET"