update from netbsd
authorderaadt <deraadt@openbsd.org>
Thu, 14 Dec 1995 06:59:45 +0000 (06:59 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 14 Dec 1995 06:59:45 +0000 (06:59 +0000)
51 files changed:
distrib/alpha/rz25dist/Makefile
distrib/amiga/floppies/inst-common/Makefile.inc
distrib/amiga/floppies/inst-common/dot.commonutils
distrib/amiga/floppies/inst-common/list
distrib/amiga/floppies/inst/list
distrib/amiga/floppies/upgr/list
distrib/atari/Makefile.inc
distrib/atari/inst-common/dot.commonutils
distrib/hp300/miniroot/Makefile.inc
distrib/hp300/miniroot/inst-common/instbin.conf
distrib/hp300/miniroot/inst-common/list
distrib/hp300/miniroot/inst-common/mtree.conf
distrib/hp300/miniroot/inst/dot.profile
distrib/hp300/miniroot/inst/install.sh
distrib/hp300/miniroot/inst/list
distrib/hp300/miniroot/inst/upgrade.sh
distrib/i386/floppies/inst-common/dot.commonutils
distrib/i386/floppies/inst-common/instbin.conf
distrib/i386/floppies/inst-common/list
distrib/i386/floppies/inst-common/mtree.conf
distrib/i386/floppies/inst/dot.hdprofile
distrib/i386/floppies/inst/dot.profile
distrib/i386/floppies/inst/install.sh
distrib/i386/floppies/upgr/Makefile
distrib/i386/floppies/upgr/upgrade.sh
distrib/notes/amiga/install
distrib/notes/amiga/xfer
distrib/notes/hp300/hardware
distrib/notes/hp300/prep
distrib/notes/legal.common
distrib/notes/pc532/hardware
distrib/notes/pc532/whatis
distrib/notes/pc532/xfer
distrib/notes/sparc/contents
distrib/notes/sparc/hardware
distrib/notes/sparc/install
distrib/notes/sparc/whatis
distrib/pc532/floppies/Makefile
distrib/pc532/floppies/Makefile.inc
distrib/pc532/floppies/inst-common/Makefile.inc
distrib/pc532/floppies/inst-common/dot.commonutils
distrib/pc532/floppies/inst-common/instbin.conf
distrib/pc532/floppies/inst-common/list
distrib/pc532/floppies/inst-common/mtree.conf
distrib/pc532/floppies/inst/install.sh
distrib/sets/lists/base/md.sparc
distrib/sets/lists/base/mi
distrib/sets/lists/man/mi
distrib/sparc/install.sh
distrib/sparc/upgrade.sh
distrib/utils/Makefile.inc

index 844b1c8..9969e50 100644 (file)
@@ -1,8 +1,10 @@
-#      $NetBSD: Makefile,v 1.7 1995/10/10 01:19:16 cgd Exp $
+#      $NetBSD: Makefile,v 1.11 1995/12/09 05:27:22 cgd Exp $
 
 # Make a distribution for the alpha, on a spare disk.
 # This creates a large, gzipped disk image in ${.OBJDIR}
 
+TARGETS=       bin.tar.gz etc.tar.gz x11.tar.gz rz25-image.gz
+
 .if !defined(DESTDIR) || !defined(DESTDISK)
 all:
        @echo both 'DESTDIR' and 'DESTDISK' must be defined.
@@ -12,14 +14,13 @@ all:
 SECPERCYL=     558
 CYLS=          1476
 
-all: bin.tar.gz etc.tar.gz rz25-image.gz
+all: ${TARGETS}
 
 mount-fs:
        disklabel -W ${DESTDISK}
        -dd if=/dev/zero of=/dev/r${DESTDISK}c bs=`expr ${SECPERCYL} \* 512` \
            count=${CYLS}
-       disklabel -w -r -B -b /usr/mdec/sdboot -s /usr/mdec/bootsd \
-           ${DESTDISK} rz25
+       disklabel -w -r ${DESTDISK} rz25
        disklabel -W ${DESTDISK}
        newfs -O /dev/r${DESTDISK}a
        newfs -O /dev/r${DESTDISK}d
@@ -31,10 +32,11 @@ build-fs:
        cd ${.CURDIR}/../../../etc && make distribution
        cd ${.CURDIR}/../../../cygnus && \
            make prefix=${DESTDIR}/usr/local install
+       cd ${.CURDIR}/../../../xc && make install install.man
        cp ${.CURDIR}/../../../sys/arch/alpha/compile/GENERIC/netbsd ${DESTDIR}
        ln -s gcc ${DESTDIR}/usr/local/bin/cc
        ln -s \
-       ../local/lib/gcc-lib/alpha-unknown-netbsd1.0A/2.7-95q4/cpp \
+       ../local/lib/gcc-lib/alpha-unknown-netbsd1.0A./2.7-95q4/cpp \
            ${DESTDIR}/usr/libexec
        ln -s ../local/bin/ar ${DESTDIR}/usr/bin
        ln -s ../local/bin/as ${DESTDIR}/usr/bin
@@ -46,6 +48,9 @@ build-fs:
        ln -s ../local/bin/size ${DESTDIR}/usr/bin
        ln -s ../local/bin/strip ${DESTDIR}/usr/bin
        cp -p ${DESTDIR}/usr/mdec/boot ${DESTDIR}/
+       sync; sleep 1; sync; sleep 1
+       ${DESTDIR}/usr/mdec/installboot -v ${DESTDIR}/boot \
+           ${DESTDIR}/usr/mdec/bootxx /dev/r${DESTDISK}c
 
 unmount-fs:
        umount ${DESTDIR}/usr ${DESTDIR}
@@ -58,19 +63,25 @@ rz25-image.gz: mount-fs build-fs unmount-fs
 
 bin.tar.gz: mount-fs build-fs
        /bin/rm -f $@
-       (cd ${DESTDIR} ; find . | grep -v '^./etc' | pax -w -d | gzip -9) > $@
+       (cd ${DESTDIR} ; find . | grep -v '^./etc' | \
+           grep -v '^./usr/X11R6' | grep -v '^./netbsd' | \
+           grep -v '^./boot' | pax -w -d | gzip -9) > $@
 
 etc.tar.gz: mount-fs build-fs
        /bin/rm -f $@
        (cd ${DESTDIR} ; find ./etc | pax -w -d | gzip -9) > $@
 
+x11.tar.gz: mount-fs build-fs
+       /bin/rm -f $@
+       (cd ${DESTDIR} ; find ./usr/X11R6 | pax -w -d | gzip -9) > $@
+
 .endif
 
 _SUBDIRUSE:
 
 # clean dependencies in case somebody decides to shortcut the build.
 clean:
-       /bin/rm -f bin.tar.gz etc.tar.gz rz25-image.gz
+       /bin/rm -f ${TARGETS}
        /bin/rm -f mount-fs build-fs unmount-fs
 
 .include <bsd.own.mk>
index 028a8c3..8bb5b3b 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile.inc,v 1.2 1995/11/28 17:31:49 deraadt Exp $
+#      $Id: Makefile.inc,v 1.3 1995/12/14 06:59:50 deraadt Exp $
 
 # TOP is assumed to be defined by Makefile including this one.
 
index 5449798..77aebaf 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: dot.commonutils,v 1.2 1995/11/06 21:27:23 deraadt Exp $
+#      $Id: dot.commonutils,v 1.3 1995/12/14 06:59:51 deraadt Exp $
 
 # Installation utilites (functions), to get NetBSD installed on
 # the hard disk.  These are meant to be invoked from the shell prompt,
index aa49912..88869c9 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: list,v 1.2 1995/11/28 17:31:51 deraadt Exp $
+#      $Id: list,v 1.3 1995/12/14 06:59:52 deraadt Exp $
 
 # copy the crunched binary, link to it, and kill it
 COPY   ${OBJDIR}/instbin       instbin
index 207025f..c50c88d 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: list,v 1.2 1995/11/28 17:31:44 deraadt Exp $
+#      $Id: list,v 1.3 1995/12/14 06:59:49 deraadt Exp $
 
 # the disktab explanation file
 COPY   disktab.preinstall              etc
index 6d61990..deed72b 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: list,v 1.2 1995/11/28 17:31:55 deraadt Exp $
+#      $Id: list,v 1.3 1995/12/14 06:59:53 deraadt Exp $
 
 # copy the kernel
 COPY   ${CURDIR}/../../../../sys/arch/amiga/compile/INSTALL/netbsd     netbsd
index a521308..70d8975 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.1.1.1.2.1 1995/10/13 21:06:42 leo Exp $
+#      $NetBSD: Makefile.inc,v 1.2 1995/11/28 23:57:10 jtc Exp $
 
 # Revision is 1.1
 REV=   11
index 0958822..5fc0276 100644 (file)
@@ -1,5 +1,5 @@
 #
-#      $NetBSD: dot.commonutils,v 1.2.2.1 1995/11/15 22:01:35 leo Exp $
+#      $NetBSD: dot.commonutils,v 1.3 1995/11/28 23:57:12 jtc Exp $
 #
 # Copyright (c) 1994 Christopher G. Demetriou
 # All rights reserved.
index e13ecd8..49fab8b 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.1.2.1 1995/11/07 07:31:09 thorpej Exp $
+#      $NetBSD: Makefile.inc,v 1.2 1995/11/28 23:57:15 jtc Exp $
 
 # Revision is 1.1
 REV=   11
index ecada0e..aca4ed1 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: instbin.conf,v 1.1.2.3 1995/11/14 10:03:13 thorpej Exp $       
+#      $NetBSD: instbin.conf,v 1.4 1995/11/14 10:12:36 thorpej Exp $   
 #
 # instbin.conf - configuration for hp300 miniroot
 
index 5186526..1dbd091 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: list,v 1.1.2.3 1995/11/14 10:03:15 thorpej Exp $
+#      $NetBSD: list,v 1.4 1995/11/14 10:12:38 thorpej Exp $
 
 # copy the crunched binary, link to it, and kill it
 COPY   ${OBJDIR}/instbin       instbin
index 9a29405..0ed90f9 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: mtree.conf,v 1.1.2.1 1995/11/07 07:22:07 thorpej Exp $
+#      $NetBSD: mtree.conf,v 1.3 1995/11/14 10:12:39 thorpej Exp $
 
 /set type=dir uname=root gname=wheel mode=0755
 # .
index bc810c7..6b89baf 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: dot.profile,v 1.1.2.1 1995/11/11 06:16:44 thorpej Exp $
+#      $NetBSD: dot.profile,v 1.2 1995/11/11 06:24:47 thorpej Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe
 # Copyright (c) 1994 Christopher G. Demetriou
index 00ddd77..01feca0 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $NetBSD: install.sh,v 1.1.2.7 1995/11/16 07:30:54 thorpej Exp $
+#      $NetBSD: install.sh,v 1.6 1995/11/28 23:57:17 jtc Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe.
 # All rights reserved.
@@ -35,7 +35,7 @@
 #      In a perfect world, this would be a nice C program, with a reasonable
 #      user interface.
 
-VERSION=1.1
+VERSION=1.1A
 export VERSION                         # XXX needed in subshell
 ROOTDISK=""                            # filled in below
 FILESYSTEMS="/tmp/filesystems"         # used thoughout
index 063a397..9f74095 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: list,v 1.1.2.1 1995/11/14 01:36:10 thorpej Exp $
+#      $NetBSD: list,v 1.2 1995/11/14 01:40:42 thorpej Exp $
 
 # copy the kernel
 COPY   ${CURDIR}/../../../../sys/arch/hp300/compile/GENERIC/netbsd     netbsd
index f429c14..dba084c 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $NetBSD: upgrade.sh,v 1.1.2.1 1995/11/14 09:59:58 thorpej Exp $
+#      $NetBSD: upgrade.sh,v 1.2 1995/11/28 23:57:19 jtc Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe.
 # All rights reserved.
index 9839c25..38cee5b 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: dot.commonutils,v 1.2 1995/11/06 21:27:38 deraadt Exp $
+#      $Id: dot.commonutils,v 1.3 1995/12/14 07:00:12 deraadt Exp $
 
 # Installation utilites (functions), to get NetBSD installed on
 # the hard disk.  These are meant to be invoked from the shell prompt,
index cdda94c..18d14ca 100644 (file)
@@ -1,6 +1,6 @@
 #
 # kcbin.conf - unified binary for the kc floppy
-# $Id: instbin.conf,v 1.2 1995/11/23 15:58:00 deraadt Exp $    
+# $Id: instbin.conf,v 1.3 1995/12/14 07:00:12 deraadt Exp $    
 #
 
 srcdirs bin sbin usr.bin usr.sbin gnu/usr.bin
index b842a11..87c3da4 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: list,v 1.2 1995/11/23 15:58:01 deraadt Exp $
+#      $Id: list,v 1.3 1995/12/14 07:00:13 deraadt Exp $
 
 # copy the crunched binary, link to it, and kill it
 COPY   ${OBJDIR}/instbin       instbin
index 1fdf6e4..2274945 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: mtree.conf,v 1.2 1995/11/23 15:58:02 deraadt Exp $
+#      $Id: mtree.conf,v 1.3 1995/12/14 07:00:13 deraadt Exp $
 
 /set type=dir uname=root gname=wheel mode=0755
 # .
index 3bb1bee..77b57a3 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#       $Id: dot.hdprofile,v 1.2 1995/11/23 15:57:57 deraadt Exp $
+#       $Id: dot.hdprofile,v 1.3 1995/12/14 07:00:09 deraadt Exp $
 
 PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
 export PATH
index ff168b2..185c09a 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#       $Id: dot.profile,v 1.2 1995/11/23 15:57:58 deraadt Exp $
+#       $Id: dot.profile,v 1.3 1995/12/14 07:00:10 deraadt Exp $
 
 PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
 export PATH
index d82f84f..2f2a30b 100644 (file)
@@ -28,7 +28,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: install.sh,v 1.3 1995/11/23 15:57:59 deraadt Exp $
+#      $Id: install.sh,v 1.4 1995/12/14 07:00:10 deraadt Exp $
 
 #      NetBSD installation script.
 #      In a perfect world, this would be a nice C program, with a reasonable
index c5b9267..5d65dfb 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile,v 1.2 1995/11/06 21:27:41 deraadt Exp $
+#      $Id: Makefile,v 1.3 1995/12/14 07:00:15 deraadt Exp $
 
 TOP=           ${.CURDIR}/..
 
index 0183b9c..2db8fbd 100644 (file)
@@ -28,7 +28,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: upgrade.sh,v 1.2 1995/11/06 21:27:47 deraadt Exp $
+#      $Id: upgrade.sh,v 1.3 1995/12/14 07:00:15 deraadt Exp $
 
 #      NetBSD upgrade script.
 #      In a perfect world, this would be a nice C program, with a reasonable
index 32da106..883db19 100644 (file)
@@ -102,7 +102,7 @@ begin again from scratch.
                type:
                        
                        mkdir /mnt/ados
-                       mount_ados /dev/sd0d /mnt/ados
+                       mount_ados -o ro /dev/sd0d /mnt/ados
 
                You can use `disklabel sd0' to find out what types
                of partitions are on the disk `sd0'.
index 602b2bb..de0edd3 100644 (file)
@@ -5,28 +5,11 @@ Installation is supported from several media types, including:
        FTP
        NetBSD partitions, if doing an upgrade.
 
->>> Transfering install/upgrade file system image to swap partition
-No matter what you do, however, you'll need to have one disk handy,
-on which you will put the install floppy image.
-
-All the images are available from the directory "amiga/floppies",
->>>                                                    ^^^^^^^^
-under the root of the NetBSD tree at your favorite archive site.
-
-If you are using NetBSD/amiga to make the floppies, you should use
-the command dd(1) to write the raw floppy images (.fs files) to
-the disk. To write onto fd0 use:
-
-       dd if=inst-11.fs of=/dev/rfd0a bs=11b
-
-If you are using AmigaDOS to make the floppies, you should
-use the rawwrite utility, provided in the directory
-"amiga/utilities" in the distribution.  To write the image to
-the floppy in df0 use (from cli):
-
-       rawwrite 0 inst-11.fs
->>> fix above to document file system transfer to swap paritition
->>> using xstreamtodev
+The install or upgrade miniroot filesystem needs to be transferred
+to the NetBSD swap partition.  This can be done from AmigaDOS in
+the case of a new install or upgrade, or from NetBSD when doing an
+upgrade.  See the "Preparing your System for NetBSD Installation"
+section for details.
 
 The steps necessary to prepare the distribution sets
 for installation depend on which method of installation
index 91731a5..c260189 100644 (file)
@@ -11,7 +11,7 @@ Here is a table of recommended HD partition sizes for a full install:
        Anything else is up to you!
 
 NOTE:  The hp300 installation procedure utilizes a `miniroot' filesystem
-which is placed into the swap area of the disk.  The swap area must be
+which is placed into the swap area of the disk.  The swap are must be
 at least large enough to hold this miniroot image.
 
 The following HP hardware is supported:
index 3e137c8..ada1d72 100644 (file)
@@ -27,7 +27,7 @@ calculated with the following formula:
 
 Controllers are numbered 0, 1, ... starting with the lowest select code.
 SCSI controllers and HP-IB controllers are counted separately.  Therefore,
-if you have a system with an internal HP-IB interface at select code 7,
+if you had a system with an internal HP-IB interface at select code 7,
 a fast HP-IB interface at select code 14, and a SCSI interface at select
 code 16, unit numers might be something like the following:
 
@@ -96,10 +96,10 @@ that it resides in a filesystem what is exported to the client.  See the
 manual pages on your server system if you need more information about
 exporting filesystems.
 
-You are now ready to load SYS_INST.  During the client's self-test cycle,
-press the space bar a few times.  Shortly, you should see a menu of possible
-boot options appear.  Select the option corresponding to SYS_INST.  SYS_INST
-will load and prompt you for a command.
+You are now ready to SYS_INST.  During the client's self-test cycle, press
+the space bar a few times.  Shortly, you should see a menu of possible boot
+options appear.  Select the option corresponding to SYS_INST.  SYS_INST will
+load and prompt you for a command.
 
 If this is a new NetBSD installation, you will need to place a disklabel
 on the disk.
index 5ccc868..ed4ba55 100644 (file)
 
        This product includes software developed by Christian E. Hopps.
 
-       This product includes software developed by Paul Kranenburg.
-
        This product includes software developed by John Kohl.
 
+       This product includes software developed by Paul Kranenburg.
+
        This product includes software developed by Terrence R. Lambert.
 
        This product includes software developed by Frank van der Linden.
index 1a33805..d872fe8 100644 (file)
@@ -1,4 +1,4 @@
-NetBSD/pc532 1.0 runs on a PC532 computer.  It supports a subset of the
+NetBSD/pc532 1.1 runs on a PC532 computer.  It supports a subset of the
 "standard" hardware to date.  This is defined as:
 
        4 - 32 Megs of memory
@@ -7,6 +7,7 @@ NetBSD/pc532 1.0 runs on a PC532 computer.  It supports a subset of the
                Most SCSI disks work (fixed and floppy)
                A few SCSI tapes work
                Some SCSI CD-ROM drives work
+       The Matthias Pfaller Parallel Port.
 
 NetBSD/pc532 currently expects the ROM monitor to be the "autoboot
 monitor" of Oct/Nov 1991.  It includes support to set up auto booting
index 3399a13..04d89c1 100644 (file)
@@ -9,6 +9,3 @@ For the pc532 port, there are a few known problems.  They include:
 
   d) The disk driver is polled, not interrupt driven.
 
-  e) kernel support for debugging is not working correctly.
-
-  f) shared libraries are not used yet.
\ No newline at end of file
index a36b90a..8333a1c 100644 (file)
@@ -3,7 +3,9 @@ via the console terminal and using the downloading parts of the
 ROM monitor.  As such, usually another computer has the distribution
 on disk and is connected via a serial line to your pc532's console
 port.  A terminal connected to the attached host computer is used
-to access the pc532 console via a terminal program.  
+to access the pc532 console via a terminal program.  The source for
+a program called download is part of this distribution.  Download
+sends data to the ROM monitor over the serial line.
 
 You may need to find and read the documentation about the ROM monitor
 download command and other low level comands.
@@ -16,4 +18,4 @@ If you have some operating system already running on your pc532,
 you can use that OS to get NetBSD/pc532 on a hard disk much easier than
 with the ROM monitor.  (NetBSD/pc532 was developed from Minix/pc532
 until it was self hosting.  You can run NetBSD and Minix or other OS
-off the same disk.)
\ No newline at end of file
+off the same disk.)
index 267dabf..8964dd0 100644 (file)
@@ -1,8 +1,8 @@
-The sparc-specific portion of the NetBSD 1.1 release is found in the
+The sparc-specific portion of the NetBSD RELEASE release is found in the
 "sparc" subdirectory of the distribution.  That subdirectory is laid
 out as follows:
 
-.../NetBSD-1.1/sparc/
+.../NetBSD-RELEASE/sparc/
                        binary/         sparc binary distribution sets;
                                        see below.
 
@@ -13,12 +13,12 @@ out as follows:
                                        and installation script.
 
 The NetBSD/sparc binary distribution sets contain the binaries which
-comprise the NetBSD 1.1 release for the sparc.  There are seven binary
+comprise the NetBSD RELEASE release for the sparc.  There are seven binary
 distribution sets, and the "security" distribution set.  The binary
 distribution sets can be found in subdirectories of the "sparc/binary"
-subdirectory of the NetBSD 1.1 distribution tree, and are as follows:
+subdirectory of the NetBSD RELEASE distribution tree, and are as follows:
 
-       base11  The NetBSD/sparc 1.1 base binary distribution.  You
+       base11  The NetBSD/sparc RELEASE base binary distribution.  You
                MUST install this distribution set.  It contains the
                base NetBSD utilities that are necessary for the
                system to run and be minimally functional.  It
@@ -67,7 +67,7 @@ subdirectory of the NetBSD 1.1 distribution tree, and are as follows:
                [ 0.8M gzipped, 3.1M uncompressed ]
 
 The sparc security distribution set is named "secr11" and can be found
-in the "sparc/security" subdirectory of the NetBSD 1.1 distribution
+in the "sparc/security" subdirectory of the NetBSD RELEASE distribution
 tree.  It contains crypt.c (the source file for the DES encryption
 algorithm) and the binaries which depend on it.  It can only be found
 on those sites which carry the complete NetBSD distribution and that
index d425275..0a360b8 100644 (file)
@@ -1,9 +1,9 @@
-NetBSD/sparc 1.1 runs on the following classes of machines:
+NetBSD/sparc RELEASE runs on the following classes of machines:
        - sun4c (e.g. the SS1, SS1+, SS2, IPC, ELC, IPX, and SLC)
        - sun4 (e.g. the 4/100, 4/200, and 4/300.   note that support
                for the 4/400 processor is incomplete)
 
-NetBSD/sparc 1.1 does *not* run on these machines (yet):
+NetBSD/sparc RELEASE does *not* run on these machines (yet):
        - sun-4/400 (lacking support for the I/O cache, and has
                        ethernet problems)
        - sun4m (e.g. sparc classic, 4, 5, 10, and 20)
index eb56c18..95bf439 100644 (file)
@@ -233,13 +233,13 @@ On version 2 OpenBOOT ROMs:
     ok setenv boot-device /sbus/esp/sd@0,0
 
 
-Congratulations, you have successfully installed NetBSD 1.1.  When you
+Congratulations, you have successfully installed NetBSD RELEASE.  When you
 reboot into NetBSD, you should log in as "root" at the login prompt.
 There is no initial password, but if you're using the machine in a
 networked environment, you should create yourself an account and
 protect it and the "root" account with good passwords.
 
-Some of the files in the NetBSD 1.1 distribution might need to be
+Some of the files in the NetBSD RELEASE distribution might need to be
 tailored for your site.  In particular, the /etc/sendmail.cf file will
 almost definitely need to be adjusted, and other files in /etc will
 probably need to be modified.  If you are unfamiliar with UN*X-like
index cbd9dce..28aadd5 100644 (file)
@@ -1,5 +1,5 @@
-NetBSD 1.1 is the second release for the sparc. Many more sparc
+NetBSD RELEASE is the second release for the sparc. Many more sparc
 models and devices are now supported.
 In addition to the SunOS 4.1 compatibility present in NetBSD/sparc 1.0,
-version 1.1 will also run some number of SunOS 5 (SVR4) executables
+version RELEASE will also run some number of SunOS 5 (SVR4) executables
 in binary emulation mode.
index b3fba08..2dd34f2 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.1.1.1.2.1 1995/10/31 06:49:34 phil Exp $
+#      $NetBSD: Makefile,v 1.2 1995/11/28 23:58:45 jtc Exp $
 
 SUBDIR= inst # upgr
 
index 138ed9a..f520de0 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile.inc,v 1.2 1995/11/06 21:28:18 deraadt Exp $
+#      $Id: Makefile.inc,v 1.3 1995/12/14 07:00:30 deraadt Exp $
 
 # Revision is 1.1
 REV=   11
index b0836df..c928729 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: Makefile.inc,v 1.1.1.1 1995/10/18 08:37:42 deraadt Exp $ 
+#      $NetBSD: Makefile.inc,v 1.5 1995/11/28 23:58:56 jtc Exp $ 
 
 # TOP is assumed to be defined by Makefile including this one.
 
@@ -59,6 +59,7 @@ unconfig:
        -/bin/rm -f ${IMAGE}
 
 ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF}
+       (cd ${COMMONDIR}; ${MAKE} download.o)
        crunchgen -D ${TOP}/../../.. -L ${DESTDIR}/usr/lib ${CRUNCHCONF}
 
 ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c
index 3e991ed..a20c781 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: dot.commonutils,v 1.2 1995/11/06 21:28:20 deraadt Exp $
+#      $Id: dot.commonutils,v 1.3 1995/12/14 07:00:35 deraadt Exp $
 
 # Installation utilites (functions), to get NetBSD installed on
 # the hard disk.  These are meant to be invoked from the shell prompt,
index 0f15a4e..3795cfc 100644 (file)
@@ -1,6 +1,6 @@
 #
 # kcbin.conf - unified binary for the kc floppy
-# $Id: instbin.conf,v 1.2 1995/11/06 21:53:53 deraadt Exp $    
+# $Id: instbin.conf,v 1.3 1995/12/14 07:00:36 deraadt Exp $    
 #
 
 srcdirs bin sbin usr.bin usr.sbin gnu/usr.bin games
index 1d739fe..1ac29a4 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: list,v 1.2 1995/11/06 21:53:54 deraadt Exp $
+#      $Id: list,v 1.3 1995/12/14 07:00:36 deraadt Exp $
 
 # copy the MAKEDEV script and make some devices
 COPY   ${DESTDIR}/dev/MAKEDEV  dev/MAKEDEV
index 4207b0f..4ff0f5d 100644 (file)
@@ -1,4 +1,4 @@
-#      $Id: mtree.conf,v 1.1.1.1 1995/10/18 08:37:42 deraadt Exp $
+#      $Id: mtree.conf,v 1.2 1995/12/14 07:00:37 deraadt Exp $
 
 /set type=dir uname=root gname=wheel mode=0755
 # .
@@ -107,5 +107,17 @@ misc
 # ./usr/share
 ..
 
+# ./usr/local
+local
+
+# ./usr/local/bin
+bin
+
+# ./usr/local/bin
+..
+
+# ./usr/local
+..
+
 # ./usr
 ..
index 25a5e71..b583a54 100644 (file)
@@ -27,7 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-#      $Id: install.sh,v 1.2 1995/11/16 14:20:06 deraadt Exp $
+#      $Id: install.sh,v 1.3 1995/12/14 07:00:32 deraadt Exp $
 
 #      NetBSD installation script.
 #      In a perfect world, this would be a nice C program, with a reasonable
index f4396e9..aa1c3f5 100644 (file)
@@ -17,7 +17,6 @@
 ./usr/mdec/bootxx
 ./usr/mdec/boot
 ./usr/mdec/binstall
-./usr/bin/fdeject
 ./usr/sbin/eeprom
 ./usr/sbin/installboot
 ./usr/sbin/screenblank
index 980334b..09eae2b 100644 (file)
 ./usr/share/nls/Pig/libc.cat
 ./usr/share/nls/de
 ./usr/share/nls/de/libc.cat
+./usr/share/nls/es
+./usr/share/nls/es/libc.cat
 ./usr/share/nls/fr
 ./usr/share/nls/fr/libc.cat
 ./usr/share/skel
index 59f37ed..55eecf0 100644 (file)
@@ -57,6 +57,7 @@
 ./usr/share/man/cat1/echo.0
 ./usr/share/man/cat1/ed.0
 ./usr/share/man/cat1/egrep.0
+./usr/share/man/cat1/eject.0
 ./usr/share/man/cat1/env.0
 ./usr/share/man/cat1/error.0
 ./usr/share/man/cat1/ex.0
index e657741..e7780c8 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $NetBSD: install.sh,v 1.2.2.2 1995/11/16 22:30:55 pk Exp $
+#      $NetBSD: install.sh,v 1.7 1995/11/16 22:29:46 pk Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe.
 # All rights reserved.
index 47d1281..7ec8b2a 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $NetBSD: upgrade.sh,v 1.3.2.1 1995/11/16 22:30:57 pk Exp $
+#      $NetBSD: upgrade.sh,v 1.5 1995/11/16 22:29:48 pk Exp $
 #
 # Copyright (c) 1995 Jason R. Thorpe.
 # All rights reserved.
index 7f3eb92..a63f6d4 100644 (file)
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.2.4.1 1995/11/21 21:26:41 gwr Exp $
+# $NetBSD: Makefile.inc,v 1.3 1995/11/21 21:17:19 gwr Exp $
 # utils one might want in a crunched binary
 
 BSDSRCDIR?=    /usr/src