From: Andres Salomon Date: Wed, 17 Jun 2009 14:38:34 +0000 (-0400) Subject: make sure all scripts end w/ exit 0 X-Git-Tag: v0.6~39 X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?p=xodist;a=commitdiff_plain;h=55a0cfe036bf1dc863622ca81530374d66d7cb0a make sure all scripts end w/ exit 0 Signed-off-by: Andres Salomon --- diff --git a/mkchroot.sh b/mkchroot.sh index 509bbdd..83f51d4 100755 --- a/mkchroot.sh +++ b/mkchroot.sh @@ -190,3 +190,5 @@ umount ${ROOT_DIR}/dev/pts # custom cleanup stuff cleanup_chroot_hook "${ROOT_DIR}" + +exit 0 diff --git a/mkext3.sh b/mkext3.sh index 4bddac3..09501a2 100755 --- a/mkext3.sh +++ b/mkext3.sh @@ -298,3 +298,5 @@ mk_ext3_fs ${IMG_NAME} ${ROOT_DIR} #mount ${IMG_NAME}.ext3 $MOUNT_POINT -o loop,offset=$OS_PART1_BEGIN -t ext3 #cp -r "$ROOT_DIR"/* $MOUNT_POINT #umount $MOUNT_POINT + +exit 0 diff --git a/mkjffs2.sh b/mkjffs2.sh index 2b839db..216c6bd 100755 --- a/mkjffs2.sh +++ b/mkjffs2.sh @@ -185,3 +185,5 @@ sed -ne 's/^mtd://p' configs/${CONFIG_TYPE}/fstab-jffs2 | \ cat "_${name}.img" >> ${DAT_NAME} rm -f "_${name}.img" done + +exit 0