Add copyright
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sun, 9 Jun 1985 03:20:02 +0000 (19:20 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sun, 9 Jun 1985 03:20:02 +0000 (19:20 -0800)
SCCS-vsn: sys/vax/cassette/Makefile 4.8
SCCS-vsn: sys/vax/cassette/Makefile 6.3
SCCS-vsn: sys/vax/conf/Makefile.vax 6.11
SCCS-vsn: sys/conf/newvers.sh 1.5
SCCS-vsn: sys/conf/param.c 6.10
SCCS-vsn: etc/etc.vax/MAKEDEV 4.18
SCCS-vsn: sys/vax/dist/buildmini 4.6
SCCS-vsn: sys/vax/dist/get 4.16
SCCS-vsn: sys/vax/dist/maketape 4.16
SCCS-vsn: etc/etc.vax/disktab 4.6
SCCS-vsn: sys/vax/mdec/Makefile 6.3
SCCS-vsn: sys/vax/mdec/installboot.c 6.2
SCCS-vsn: sys/vax/mdec/hkboot.c 6.2
SCCS-vsn: sys/vax/mdec/hpboot.c 6.2
SCCS-vsn: sys/vax/mdec/htboot.c 6.2
SCCS-vsn: sys/vax/mdec/httoggle.s 6.2
SCCS-vsn: sys/vax/mdec/mtboot.c 6.2
SCCS-vsn: sys/vax/mdec/mttoggle.s 6.2
SCCS-vsn: sys/vax/mdec/raboot.c 6.2

18 files changed:
usr/src/etc/etc.vax/MAKEDEV
usr/src/etc/etc.vax/disktab
usr/src/sys/conf/newvers.sh
usr/src/sys/conf/param.c
usr/src/sys/vax/cassette/Makefile
usr/src/sys/vax/conf/Makefile.vax
usr/src/sys/vax/dist/buildmini
usr/src/sys/vax/dist/get
usr/src/sys/vax/dist/maketape
usr/src/sys/vax/mdec/Makefile
usr/src/sys/vax/mdec/hkboot.c
usr/src/sys/vax/mdec/hpboot.c
usr/src/sys/vax/mdec/htboot.c
usr/src/sys/vax/mdec/httoggle.s
usr/src/sys/vax/mdec/installboot.c
usr/src/sys/vax/mdec/mtboot.c
usr/src/sys/vax/mdec/mttoggle.s
usr/src/sys/vax/mdec/raboot.c

index 08829b8..822bc8c 100644 (file)
@@ -1,5 +1,10 @@
-#! /bin/sh
-#      @(#)MAKEDEV     4.17    %G%
+#!/bin/sh -
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)MAKEDEV     4.18 (Berkeley) %G%
 #
 # Device "make" file.  Valid arguments:
 #      std     standard devices
 #
 # Device "make" file.  Valid arguments:
 #      std     standard devices
index a76931c..88ad816 100644 (file)
@@ -1,4 +1,10 @@
-#      disktab 4.5     83/07/30
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)disktab     4.6 (Berkeley) %G%
+#
 # Disk geometry and partition layout tables. 
 # Key:
 #      ty      type of disk
 # Disk geometry and partition layout tables. 
 # Key:
 #      ty      type of disk
index 2cca3b4..2889acf 100644 (file)
@@ -1,4 +1,11 @@
-#sccsid        newvers.sh      1.4     85/06/03
+#!/bin/sh -
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)newvers.sh  1.5 (Berkeley) %G%
+#
 if [ ! -r version ]; then echo 0 > version; fi
 touch version
 echo `cat version` ${USER-root} `pwd` `date` `hostname` | \
 if [ ! -r version ]; then echo 0 > version; fi
 touch version
 echo `cat version` ${USER-root} `pwd` `date` `hostname` | \
index e9d875c..f7a14f4 100644 (file)
@@ -1,4 +1,14 @@
-/*     param.c 6.9     85/04/17        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+char copyright[] =
+"@(#) Copyright (c) 1980 Regents of the University of California.\n\
+ All rights reserved.\n";
+#endif not lint
 
 #include "../h/param.h"
 #include "../h/systm.h"
 
 #include "../h/param.h"
 #include "../h/systm.h"
index 464727b..c58de43 100644 (file)
@@ -1,4 +1,9 @@
-#      Makefile        6.2     83/09/25
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    6.3 (Berkeley) %G%
 #
 # Make a 750/730 tu58 cassette
 # 
 #
 # Make a 750/730 tu58 cassette
 # 
index 813c672..856b466 100644 (file)
@@ -1,6 +1,11 @@
-#      Makefile.vax    6.10    %G%
 #
 #
-# Makefile for 4.2 BSD
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile.vax        6.11 (Berkeley) %G%
+#
+# Makefile for 4.3 BSD
 #
 # This makefile is constructed from a machine description:
 #      config machine
 #
 # This makefile is constructed from a machine description:
 #      config machine
index 831d8d1..218fc1f 100644 (file)
@@ -1,5 +1,10 @@
-#! /bin/sh
-#      @(#)buildmini   4.5     %G%
+#!/bin/sh -
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)buildmini   4.6 (Berkeley) %G%
 #
 miniroot=hp0d
 minitype=rm80
 #
 miniroot=hp0d
 minitype=rm80
index 1861f39..ab5704e 100644 (file)
@@ -1,5 +1,10 @@
-#! /bin/sh
-#      @(#)get 4.15    %G%
+#!/bin/sh -
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)get 4.16 (Berkeley) %G%
 #
 # Shell script to build a mini-root file system
 # in preparation for building a distribution tape.
 #
 # Shell script to build a mini-root file system
 # in preparation for building a distribution tape.
index 7411bf9..4006f62 100644 (file)
@@ -1,5 +1,10 @@
-#! /bin/sh
-#      @(#)maketape    4.15    %G%
+#!/bin/sh -
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)maketape    4.16 (Berkeley) %G%
 #
 miniroot=hp0d
 #
 #
 miniroot=hp0d
 #
index 2ee57d5..d55a25d 100644 (file)
@@ -1,4 +1,9 @@
-#      @(#)Makefile    6.2     %G%
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    6.3 (Berkeley) %G%
 #
 ALL=   hkboot hpboot htboot mtboot noboot raboot rlboot \
        upboot utboot tmboot tsboot tuboot \
 #
 ALL=   hkboot hpboot htboot mtboot noboot raboot rlboot \
        upboot utboot tmboot tsboot tuboot \
index ca6c5df..6a86e67 100644 (file)
@@ -1,4 +1,13 @@
-/*     hkboot.c        6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)hkboot.c   6.2 (Berkeley) %G%"
+#endif not lint
+
 
 /*
  * RK07 1st level boot program: loads next 7.5Kbytes from
 
 /*
  * RK07 1st level boot program: loads next 7.5Kbytes from
index 313e45e..99d6d97 100644 (file)
@@ -1,4 +1,13 @@
-/*     hpboot.c        6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)hpboot.c   6.2 (Berkeley) %G%"
+#endif not lint
+
 
 /*
  * RP??/RM?? 1st level boot program: loads next 7.5Kbytes from
 
 /*
  * RP??/RM?? 1st level boot program: loads next 7.5Kbytes from
index a4864e9..102f678 100644 (file)
@@ -1,4 +1,13 @@
-/*     htboot.c        6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)htboot.c   6.2 (Berkeley) %G%"
+#endif not lint
+
 
 /*
  * VAX tape boot block for distribution tapes
 
 /*
  * VAX tape boot block for distribution tapes
index b66046f..4872345 100644 (file)
@@ -1,4 +1,13 @@
-/*     httoggle.s      6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)httoggle.s 6.2 (Berkeley) %G%"
+#endif not lint
+
 
 /*
  * Prototype toggle in bootstrap code for ht type tapes.
 
 /*
  * Prototype toggle in bootstrap code for ht type tapes.
index 5e540a1..0485414 100644 (file)
@@ -1,4 +1,18 @@
-/*     installboot.c   6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+char copyright[] =
+"@(#) Copyright (c) 1980 Regents of the University of California.\n\
+ All rights reserved.\n";
+#endif not lint
+
+#ifndef lint
+static char sccsid[] = "@(#)installboot.c      6.2 (Berkeley) %G%";
+#endif not lint
 
 #include "../h/param.h"
 #include "../h/fs.h"
 
 #include "../h/param.h"
 #include "../h/fs.h"
index ed09abc..ab16618 100644 (file)
@@ -1,4 +1,12 @@
-/*     mtboot.c        6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)mtboot.c   6.2 (Berkeley) %G%"
+#endif not lint
 
 /*
  * VAX tape boot block for distribution tapes
 
 /*
  * VAX tape boot block for distribution tapes
index c2accb8..dd8d039 100644 (file)
@@ -1,4 +1,12 @@
-/*     mttoggle.s      6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)mttoggle.s 6.2 (Berkeley) %G%"
+#endif not lint
 
 /*
  * Prototype toggle in bootstrap code for mt type tapes.
 
 /*
  * Prototype toggle in bootstrap code for mt type tapes.
index 62b5db2..a418f3c 100644 (file)
@@ -1,4 +1,12 @@
-/*     raboot.c        6.1     83/07/29        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+_sccsid:.asciz "@(#)raboot.c   6.2 (Berkeley) %G%"
+#endif not lint
 
 /*
  * UDA50 1st level boot program: loads next 7.5Kbytes from
 
 /*
  * UDA50 1st level boot program: loads next 7.5Kbytes from