Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amiga/stand/bootblock/ppcboot Assign copyright to T...



details:   https://anonhg.NetBSD.org/src/rev/e5a30993185b
branches:  trunk
changeset: 480038:e5a30993185b
user:      is <is%NetBSD.org@localhost>
date:      Thu Dec 30 21:09:56 1999 +0000

description:
Assign copyright to TNF and add license.

diffstat:

 sys/arch/amiga/stand/bootblock/ppcboot/hex2c.awk   |  37 ++++++++++++++++++++-
 sys/arch/amiga/stand/bootblock/ppcboot/kickstart.S |  38 ++++++++++++++++++++-
 sys/arch/amiga/stand/bootblock/ppcboot/ppcstart.c  |  38 ++++++++++++++++++++-
 3 files changed, 106 insertions(+), 7 deletions(-)

diffs (136 lines):

diff -r 04bc802a3758 -r e5a30993185b sys/arch/amiga/stand/bootblock/ppcboot/hex2c.awk
--- a/sys/arch/amiga/stand/bootblock/ppcboot/hex2c.awk  Thu Dec 30 20:56:44 1999 +0000
+++ b/sys/arch/amiga/stand/bootblock/ppcboot/hex2c.awk  Thu Dec 30 21:09:56 1999 +0000
@@ -1,4 +1,39 @@
-# Copyright 1998 Ignatios Souvatzis. All rights reserved.
+# $NetBSD: hex2c.awk,v 1.2 1999/12/30 21:09:56 is Exp $
+#
+# Copyright (c) 1999 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# This code is derived from software contributed to The NetBSD Foundation
+# by Ignatios Souvatzis.
+#
+# 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 NetBSD
+#        Foundation, Inc. and its contributors.
+# 4. Neither the name of The NetBSD Foundation nor the names of its
+#    contributors may be used to endorse or promote products derived
+#    from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
+#
 BEGIN{print "/* Generated by a script  --- do not edit */"}
 BEGIN{print "#include <sys/types.h>"}
 BEGIN{print "const u_int16_t kickstart[] = {"}
diff -r 04bc802a3758 -r e5a30993185b sys/arch/amiga/stand/bootblock/ppcboot/kickstart.S
--- a/sys/arch/amiga/stand/bootblock/ppcboot/kickstart.S        Thu Dec 30 20:56:44 1999 +0000
+++ b/sys/arch/amiga/stand/bootblock/ppcboot/kickstart.S        Thu Dec 30 21:09:56 1999 +0000
@@ -1,7 +1,39 @@
-/*     $NetBSD: kickstart.S,v 1.1 1999/11/28 22:10:48 is Exp $ */
+/*     $NetBSD: kickstart.S,v 1.2 1999/12/30 21:09:56 is Exp $ */
 
-/*
- * Copyright (C) 1998 Ignatios Souvatzis. All rights reserved.
+/*-
+ * Copyright (c) 1999 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Ignatios Souvatzis.
+ *
+ * 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 NetBSD
+ *        Foundation, Inc. and its contributors.
+ * 4. Neither the name of The NetBSD Foundation nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
  */
 
 #define PPC_CACHESIZE 16384
diff -r 04bc802a3758 -r e5a30993185b sys/arch/amiga/stand/bootblock/ppcboot/ppcstart.c
--- a/sys/arch/amiga/stand/bootblock/ppcboot/ppcstart.c Thu Dec 30 20:56:44 1999 +0000
+++ b/sys/arch/amiga/stand/bootblock/ppcboot/ppcstart.c Thu Dec 30 21:09:56 1999 +0000
@@ -1,7 +1,39 @@
-/* $NetBSD: ppcstart.c,v 1.1 1999/11/28 22:10:48 is Exp $ */
+/* $NetBSD: ppcstart.c,v 1.2 1999/12/30 21:09:56 is Exp $ */
 
-/*
- * Copyright 1999 Ignatios Souvatzis. All rights reserved.
+/*-
+ * Copyright (c) 1999 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Ignatios Souvatzis.
+ *
+ * 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 NetBSD
+ *        Foundation, Inc. and its contributors.
+ * 4. Neither the name of The NetBSD Foundation nor the names of its
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
  */
 
 /*



Home | Main Index | Thread Index | Old Index