gpllib: Add copyright/license information (disklib)
authorPierre-Alexandre Meyer <pierre@mouraf.org>
Fri, 1 May 2009 03:42:43 +0000 (20:42 -0700)
committerPierre-Alexandre Meyer <pierre@mouraf.org>
Fri, 1 May 2009 03:42:43 +0000 (20:42 -0700)
The disklib is distributed under GPLv2.

Add copyright holders for borrowed code:

 * H. Peter Anvin/Intel Corporation (read/write BIOS calls)
 * Matt Domsch <Matt_Domsch@dell.com> (edd structures)

Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
15 files changed:
com32/gplinclude/disk/common.h
com32/gplinclude/disk/error.h
com32/gplinclude/disk/geom.h
com32/gplinclude/disk/msdos.h
com32/gplinclude/disk/partition.h
com32/gplinclude/disk/read.h
com32/gplinclude/disk/util.h
com32/gplinclude/disk/write.h
com32/gpllib/disk/error.c
com32/gpllib/disk/geom.c
com32/gpllib/disk/labels.c
com32/gpllib/disk/msdos.c
com32/gpllib/disk/read.c
com32/gpllib/disk/util.c
com32/gpllib/disk/write.c

index 6e4f3d6..c6df2f4 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _COMMON_H_
 #define _COMMON_H_
 
index 3a7614e..5eb54e0 100644 (file)
@@ -1,3 +1,12 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _ERROR_H_
 #define _ERROR_H_
 void get_error(const int, char**);
index 30dc86b..0d3eed5 100644 (file)
@@ -1,3 +1,22 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   Some parts borrowed from Linux:
+ *
+ *   Copyright (C) 2002, 2003, 2004 Dell Inc.
+ *   by Matt Domsch <Matt_Domsch@dell.com>
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _GEOM_H_
 #define _GEOM_H_
 
index b6dd948..1f565f3 100644 (file)
@@ -1,3 +1,12 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _MSDOS_H_
 #define _MSDOS_H_
 
index 3bffa89..be6bfaa 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _PARTITION_H_
 #define _PARTITION_H_
 
index fee10da..6d6d9fe 100644 (file)
@@ -1,3 +1,12 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _READ_H_
 #define _READ_H_
 
index dd0d5c0..df2eadd 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _UTIL_H_
 #define _UTIL_H_
 
index be6494f..fe251f9 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #ifndef _WRITE_H_
 #define _WRITE_H_
 
index 763dcfd..6848ef3 100644 (file)
@@ -1,3 +1,12 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 7bbb698..02ac681 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <com32.h>
 #include <string.h>
 #include <stdio.h>
index cb28be9..7efe1ad 100644 (file)
@@ -1,3 +1,12 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <stdlib.h>
 #include <string.h>
 
index da28b8b..9bfcacc 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <stdlib.h>
 #include <disk/geom.h>
 #include <disk/partition.h>
index a5cb120..3fc0e0c 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <com32.h>
 #include <stdlib.h>
 #include <string.h>
index c03ed37..6faac39 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <com32.h>
 #include <stdlib.h>
 #include <string.h>
index cd58548..70c73ba 100644 (file)
@@ -1,3 +1,17 @@
+/* ----------------------------------------------------------------------- *
+ *
+ *   Copyright 2009 Pierre-Alexandre Meyer
+ *
+ *   Some parts borrowed from chain.c32:
+ *
+ *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
+ *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
+ *
+ *   This file is part of Syslinux, and is made available under
+ *   the terms of the GNU General Public License version 2.
+ *
+ * ----------------------------------------------------------------------- */
+
 #include <com32.h>
 #include <stdlib.h>
 #include <string.h>