]> Zhao Yanbai Git Server - minix.git/commitdiff
Rename install steps; add copying /usr/lib/* to /lib/*
authorBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 18:36:12 +0000 (18:36 +0000)
committerBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 18:36:12 +0000 (18:36 +0000)
commands/ibm/autopart.c
commands/scripts/setup.sh
tools/chrootmake.sh
tools/release.sh

index f60fc7eef10345739ad40e67a36936633695987e..571c726ecb2607123eb4b2c1c00886b182fa0b0b 100755 (executable)
@@ -2553,7 +2553,7 @@ do_autopart(int resultfd)
        probing = 1;
        autopartmode = 1;
 
-       printf("\n\n --- Step 2.1 --- Select drive ---------------------------------------\n\n");
+               printf("\n\n --- Step 2.1 --- Select drive and region -----------------------------\n\n");
 
        do {
                curdev = select_disk();
@@ -2570,13 +2570,13 @@ do_autopart(int resultfd)
        memcpy(orig_table, table, sizeof(table));
 
        do {
-               printf("\n\n --- Step 2.2 --- Select region to install in ------------------------\n\n");
+               printf("\n\n --- Step 2.1 --- Select drive and region -----------------------------\n\n");
        
                /* Show regions. */
                r = select_region();
        } while(!r);    /* Back to step 2. */
 
-       printf("\n\n --- Step 2.3 --- Write table to disk --------------------------------\n\n");
+               printf("\n\n --- Step 2.2 --- Confirm your choice ---------------------------------\n\n");
 
        /* Write things. */
        if(scribble_region(r, &pe)) {
index e19eb048f172dda9421f535085c005a897db80ea..d45f7cfef8cc24985d9ad63f43193576e9acffbf 100755 (executable)
@@ -88,7 +88,7 @@ ok=""
 while [ "$ok" = "" ]
 do
 echo "
- --- Step 2 --- Partitioning -----------------------------------------
+ --- Step 2 --- Create a MINIX 3 partition ---------------------------
 "
        echo -n "Now is the MINIX 3 partitioning step. Do you want to
 follow the (A)utomatic or the e(X)pert mode? [A] "
@@ -179,7 +179,7 @@ hex2int()
     echo $i
 }
 echo "
- --- Step 3 --- Networking -------------------------------------------
+ --- Step 3 --- Select your Ethernet chip ----------------------------
 "
 
 # Ask user about networking
@@ -235,7 +235,7 @@ esac
 
 blockdefault=8
 echo "
- --- Step 4 --- Block size -------------------------------------------
+ --- Step 4 --- Select a disk block size -----------------------------
 "
 echo "\
 The default block size on the disk is $blockdefault KB.
@@ -258,13 +258,14 @@ done
 
 blocksizebytes="`expr $blocksize '*' 1024`"
 echo "
- --- Step 5 --- Swap space -------------------------------------------
+ --- Step 5 --- Allocate swap space ----------------------------------
 "
 
 echo -n "
 How much swap space would you like?  Swapspace is only needed if this
-system is memory starved, like a 16-bit system with less then 2M, or a
-32-bit system with less then 4M. 
+system is memory starved. If you have 256 MB of memory or more, you
+probably don't need it. If you have less and want to run many programs
+at once, I suggest setting it to the memory size.
 
 Size in kilobytes? [$swapadv] "
                    
@@ -303,7 +304,7 @@ else
 fi
 
 echo "
- --- Step 6 --- Copy files -------------------------------------------
+ --- Step 6 --- Copy files to hard disk ------------------------------
 "
 
 mkfs -B $blocksizebytes /dev/$usr
index f7557efb0dfafa4b9d4a740eac45a3b9f331ffb6..7a42f9d7ee299702051e551a1745d466388492f3 100755 (executable)
@@ -8,5 +8,8 @@ make hdboot || exit 1
 cp ../boot/boot /boot/boot || exit 1
 cd /usr/src || exit 1
 make clean
+# Put compiler and libraries on root (ramdisk if enabled)
+cp /usr/lib/* /lib
+cp /usr/lib/i386/* /lib/i386/
 exit 0
 
index dd0d1aca4064d153acf72ac326d8b76f970aa8fa..3d0ac10bc8e7865bccf837c82c6bac397f9dbf5a 100755 (executable)
@@ -37,7 +37,7 @@ echo " * Cleanup old files"
 rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES
 mkdir -p $CDFILES || exit
 mkdir -p $RELEASEDIR
-mkfs -b 1440 -B 1024 $RAM || exit
+mkfs -b 16384 -B 1024 $RAM || exit
 echo " * chowning to bin"
 chown -R bin /usr/src
 echo " * mounting $RAM as $RELEASEDIR"