From 3c6b23e76360592e990370bbf71c57131175be48 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Fri, 21 Oct 2005 20:08:26 +0000 Subject: [PATCH] Remember old scratch devices --- tools/release.sh | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/tools/release.sh b/tools/release.sh index caff5d72c..991194252 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -109,13 +109,21 @@ then echo "" fi -echo "Warning: I'm going to mkfs $RAM! It has to be at least $ROOTKB KB." -echo "" -echo "Temporary (sub)partition to use to make the /usr FS image? " -echo "I need $USRMB MB. It will be mkfsed!" -echo -n "Device: /dev/" -read dev || exit 1 -TMPDISK=/dev/$dev +TD1=.td1 +TD2=.td2 + +if [ -f $TD1 ] +then TMPDISK="`cat $TD1`" +else + echo "Warning: I'm going to mkfs $RAM!" + echo "It has to be at least $ROOTKB KB." + echo "" + echo "Temporary (sub)partition to use to make the /usr FS image? " + echo "I need $USRMB MB. It will be mkfsed!" + echo -n "Device: /dev/" + read dev || exit 1 + TMPDISK=/dev/$dev +fi if [ -b $TMPDISK ] then : @@ -123,11 +131,17 @@ else echo "$TMPDISK is not a block device.." exit 1 fi -echo "Temporary (sub)partition to use for /tmp? " -echo "It will be mkfsed!" -echo -n "Device: /dev/" -read dev || exit 1 -TMPDISK2=/dev/$dev +echo $TMPDISK >$TD1 + +if [ -f $TD2 ] +then TMPDISK2="`cat $TD2`" +else + echo "Temporary (sub)partition to use for /tmp? " + echo "It will be mkfsed!" + echo -n "Device: /dev/" + read dev || exit 1 + TMPDISK2=/dev/$dev +fi if [ -b $TMPDISK2 ] then : @@ -135,6 +149,8 @@ else echo "$TMPDISK2 is not a block device.." exit 1 fi +echo $TMPDISK2 >$TD2 + umount $TMPDISK umount $TMPDISK2 umount $RAM -- 2.44.0