BSD 4_3_Net_2 release
[unix-history] / usr / src / sys / tahoe / dist / get
index 2261668..cb62aa6 100644 (file)
@@ -3,9 +3,35 @@
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
 #
-# %sccs.include.redist.sh%
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+# 3. All advertising materials mentioning features or use of this software
+#    must display the following acknowledgement:
+#      This product includes software developed by the University of
+#      California, Berkeley and its contributors.
+# 4. Neither the name of the University nor the names of its contributors
+#    may be used to endorse or promote products derived from this software
+#    without specific prior written permission.
 #
 #
-#      @(#)get 1.7 (Berkeley) %G%
+# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+#      @(#)get 1.8 (Berkeley) 5/21/91
 #
 
 # Shell script to build a mini-root file system in preparation for building
 #
 
 # Shell script to build a mini-root file system in preparation for building
@@ -65,7 +91,7 @@ done
 cp $DISTROOT/dev/MAKEDEV dev/MAKEDEV
 chmod +x dev/MAKEDEV
 cp /dev/null dev/MAKEDEV.local
 cp $DISTROOT/dev/MAKEDEV dev/MAKEDEV
 chmod +x dev/MAKEDEV
 cp /dev/null dev/MAKEDEV.local
-(cd dev; ./MAKEDEV std hd0; ./MAKEDEV cy0; mv rmt12 cy0; rm *mt*)
+(cd dev; ./MAKEDEV std hd0 hd1 dk0 dk1; ./MAKEDEV cy0; mv rmt12 cy0; rm *mt*)
 
 # initialize /etc/passwd
 cat >etc/passwd <<EOF
 
 # initialize /etc/passwd
 cat >etc/passwd <<EOF
@@ -80,17 +106,17 @@ EOF
 
 # initialize /etc/fstab
 cat >etc/fstab <<EOF
 
 # initialize /etc/fstab
 cat >etc/fstab <<EOF
-/dev/xfd0a:/a:xx:1:1
-/dev/hd0a:/a:xx:1:1
+/dev/dk0a /a           ufs     xx 1 1
+/dev/hd0a /a           ufs     xx 1 1
 EOF
 
 # create xtr script
 cat >xtr <<'EOF'
 #!/bin/sh -e
 EOF
 
 # create xtr script
 cat >xtr <<'EOF'
 #!/bin/sh -e
-: ${disk?'Usage: disk=xx0 tape=yy xtr'}
-: ${tape?'Usage: disk=xx0 tape=yy xtr'}
+: ${disk?'Usage: disk=xx0 tape=yy [type=zz] xtr'}
+: ${tape?'Usage: disk=xx0 tape=yy [type=zz] xtr'}
 echo 'Build root file system'
 echo 'Build root file system'
-newfs ${disk}a
+newfs ${disk}a ${type}
 sync
 echo 'Check the file system'
 fsck /dev/r${disk}a
 sync
 echo 'Check the file system'
 fsck /dev/r${disk}a