From d04c776f3c9a1b2b3112748c228425abbb39cf59 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Fri, 5 Jan 2018 23:31:46 +0100 Subject: [PATCH] Fix Minnich's Copyrights As far as I can remember the new `dc` argument added to the `mount` system call is the only API innovation that I imported from Harvey-OS in the Jehanne's kernel. It's a great idea of Ronald G. Minnich, introduced at https://github.com/Harvey-OS/harvey/commit/72777a1fab7b33c26bb4d9dccff934d4f213303e Since he didn't amended the copyright statements in Harvey, I forgot to amend it here. Sorry, my fault. --- sys/src/kern/boot/boot.c | 3 +++ sys/src/kern/port/lib.h | 10 ++++++++++ sys/src/kern/port/sysfile.c | 3 +++ 3 files changed, 16 insertions(+) diff --git a/sys/src/kern/boot/boot.c b/sys/src/kern/boot/boot.c index 1f28da7..b1bc29d 100644 --- a/sys/src/kern/boot/boot.c +++ b/sys/src/kern/boot/boot.c @@ -4,6 +4,9 @@ /* Portions of this file are Copyright (C) 2015-2018 Giacomo Tesio * See /doc/license/gpl-2.0.txt for details about the licensing. */ +/* Portions of this file are Copyright (C) 2015 Ronald G. Minnich + * See /doc/license/gpl-2.0.txt for details about the licensing. + */ #include #include diff --git a/sys/src/kern/port/lib.h b/sys/src/kern/port/lib.h index 073d554..bd179ec 100644 --- a/sys/src/kern/port/lib.h +++ b/sys/src/kern/port/lib.h @@ -1,3 +1,13 @@ +/* Copyright (C) Charles Forsyth + * See /doc/license/NOTICE.Plan9-9k.txt for details about the licensing. + */ +/* Portions of this file are Copyright (C) 2015-2018 Giacomo Tesio + * See /doc/license/gpl-2.0.txt for details about the licensing. + */ +/* Portions of this file are Copyright (C) 2015 Ronald G. Minnich + * See /doc/license/gpl-2.0.txt for details about the licensing. + */ + /* * functions (possibly) linked in, complete, from libc. */ diff --git a/sys/src/kern/port/sysfile.c b/sys/src/kern/port/sysfile.c index ca63e04..00771ca 100644 --- a/sys/src/kern/port/sysfile.c +++ b/sys/src/kern/port/sysfile.c @@ -4,6 +4,9 @@ /* Portions of this file are Copyright (C) 2015-2018 Giacomo Tesio * See /doc/license/gpl-2.0.txt for details about the licensing. */ +/* Portions of this file are Copyright (C) 2015 Ronald G. Minnich + * See /doc/license/gpl-2.0.txt for details about the licensing. + */ #include "u.h" #include "../port/lib.h" #include "mem.h"