]> Zhao Yanbai Git Server - minix.git/commitdiff
*** empty log message ***
authorBen Gras <ben@minix3.org>
Tue, 13 Sep 2005 13:39:42 +0000 (13:39 +0000)
committerBen Gras <ben@minix3.org>
Tue, 13 Sep 2005 13:39:42 +0000 (13:39 +0000)
commands/scripts/setup.sh

index 76f9fb10bac2a40a2f2d11a4f90cb0db530230ee..014e20c8164fded4b9bd5c38e1828ddef8525ec0 100755 (executable)
@@ -398,15 +398,7 @@ nohome="0"
 
 homesize=""
 if [ ! "$auto" = r ]
-then   homesize="`devsize /dev/$home` / 2 / 1024"
-       if [ "$homesize" -gt "$maxhome" ]
-       then
-               echo "Sorry, but your /home is too big ($homesize MB) to leave enough"
-               echo "space on the rest of the partition ($devsizemb MB) for your"
-               echo "selected installation size ($TOTALMB MB)."
-               exit 1
-       fi
-else
+then   
 echo ""
 echo " --- Step 6: Select the size of /home ----------------------------------"
        while [ -z "$homesize" ]
@@ -444,6 +436,14 @@ echo " --- Step 6: Select the size of /home ----------------------------------"
        homemb="$homesize MB"
        homesize="`expr $homesize '*' 1024 '*' 2`"
 else
+       homesize="`devsize /dev/$home` / 2 / 1024"
+       if [ "$homesize" -gt "$maxhome" ]
+       then
+               echo "Sorry, but your /home is too big ($homesize MB) to leave enough"
+               echo "space on the rest of the partition ($devsizemb MB) for your"
+               echo "selected installation size ($TOTALMB MB)."
+               exit 1
+       fi
        # Homesize unchanged (reinstall)
        homesize=exist
        homemb="current size"