diff --git a/verbatim/boot/README.install b/verbatim/boot/README.install index a95eef4..84ef6ed 100644 --- a/verbatim/boot/README.install +++ b/verbatim/boot/README.install @@ -1,4 +1,4 @@ -$Id: README.install,v 1.1 1998/04/22 04:57:31 gdr-ftp Exp $ +$Id: README.install,v 1.2 1998/04/24 06:02:17 gdr-ftp Exp $ The install scripts assumes that your _new_ distribution will be installed on to the two volumes /gno (ProDOS) and /gno-hfs (HFS). It also assumes @@ -42,5 +42,12 @@ You should now do the following steps: commands: cd /gno/usr/man - mkso -v -H /gno-hfs mkso.data + mkso -v -H /gno-hfs/man mkso.data + 6. You should now return to your program launcher (the Finder, + ProSEL-16, or whatever you used to start /gno.boot/kern) by + typing "exit" at the prompt. To startup up your new version + of GNO, you should then launch /gno/kern. You will then see + a "login:" prompt. Enter "root" as the user name; you will + not yet need a password. + diff --git a/verbatim/boot/gshrc b/verbatim/boot/gshrc index 59f5d07..33e31d4 100755 --- a/verbatim/boot/gshrc +++ b/verbatim/boot/gshrc @@ -2,7 +2,7 @@ # # GNO 2.0.6 gshrc file (for the bootstrap disk) # -# $Id: gshrc,v 1.1 1998/04/22 04:57:32 gdr-ftp Exp $ +# $Id: gshrc,v 1.2 1998/04/24 06:02:18 gdr-ftp Exp $ # ### @@ -56,9 +56,10 @@ echo "=====================================================================" echo "= GNO v2.0.6 bootstrap disk." echo "=" echo "= Don't worry about the fact that this disk contains a v2.0.4 kernel;" -echo "= a more recent one will be installed. See PR#62 for details." +echo "= a more recent one will be installed. See Problem Report #62 at" +echo "= http://www.gno.org/~gno/bugs.html for details." echo "=" -echo '= $Id: gshrc,v 1.1 1998/04/22 04:57:32 gdr-ftp Exp $' +echo '= $Id: gshrc,v 1.2 1998/04/24 06:02:18 gdr-ftp Exp $' echo "=====================================================================" echo " " echo " " diff --git a/verbatim/boot/installboot1 b/verbatim/boot/installboot1 index e0330b0..0b55c29 100755 --- a/verbatim/boot/installboot1 +++ b/verbatim/boot/installboot1 @@ -1,7 +1,7 @@ # # installboot1 # -# $Id: installboot1,v 1.1 1998/04/22 04:57:35 gdr-ftp Exp $ +# $Id: installboot1,v 1.2 1998/04/24 06:02:20 gdr-ftp Exp $ # echo "Before running this script, you should have set your DOWNLOAD_DIR" @@ -11,11 +11,13 @@ echo "not set your environment variable then it will appear as /gno.01.shk" echo "and the extraction will fail. If you see error messages, you can" echo "type ^C (control-C) to stop. (Waiting 3 seconds, then starting" echo "extraction.)" -sleep 3 echo " " - setenv FILE "$DOWNLOAD_DIR/gno.01.shk" +echo " $FILE" +echo " " +sleep 3 + echo "Extracting $FILE ..." echo " " yankit xvf $FILE @@ -117,7 +119,7 @@ echo " " echo "Creating empty directories required by GNO ..." install -dV doc -install -dV lang/orca/languages lang/orca/shell +install -dV lang/orca/languages lang/orca/shell lang/orca/utilities install -dV lang/orca/libraries/orcacdefs install -dV usr/games usr/guest/operator install -dV usr/local/bin usr/local/doc usr/local/etc diff --git a/verbatim/boot/installboot2 b/verbatim/boot/installboot2 index 1bdbce7..ed299a2 100755 --- a/verbatim/boot/installboot2 +++ b/verbatim/boot/installboot2 @@ -1,24 +1,39 @@ # # installboot2 # -# $Id: installboot2,v 1.1 1998/04/22 04:57:36 gdr-ftp Exp $ +# $Id: installboot2,v 1.2 1998/04/24 06:02:21 gdr-ftp Exp $ # -setenv FILE "$DOWNLOAD_DIR/gnohfs.shk" - echo "Before running this script, you should have set your DOWNLOAD_DIR" echo "environment variable. If this was done, then the following line" echo "will show the full pathname of the gnohfs.shk file. If you did" echo "not set your environment variable then it will appear as /gnohfs.shk" echo "and the extraction will fail. (Waiting 3 seconds, then starting" echo "extraction.)" -sleep 3 + echo " " +setenv FILE "$DOWNLOAD_DIR/gnohfs.shk" +echo " $FILE" +echo " " +sleep 3 + echo "Now extracting $FILE ..." echo " " yankit xvf $FILE echo " " echo "All done extraction." echo " " + +echo "Creating empty HFS manual page directories (these will be needed later)." +install -dV man/man1 +install -dV man/man2 +install -dV man/man3 +install -dV man/man4 +install -dV man/man5 +install -dV man/man6 +install -dV man/man7 +install -dV man/man8 +echo " " + echo "You should now finish the installation process as is documented" echo "in the README.install file on the /gno.boot disk."