summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Alexandre Meyer <pierre@mouraf.org>2009-04-30 20:42:43 -0700
committerErwan Velu <erwan.velu@free.fr>2009-05-02 19:23:32 +0200
commitb3a797d35d21bef58b4a36cc76d8e39b822022ec (patch)
tree2a5a241b094a5989392602459826a4c42ae826b8
parentc9621dba0331d0024f9c43fc2a5a9f91decded67 (diff)
downloadsyslinux-b3a797d35d21bef58b4a36cc76d8e39b822022ec.tar.gz
gpllib: Add copyright/license information (disklib)
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>
-rw-r--r--com32/gplinclude/disk/common.h14
-rw-r--r--com32/gplinclude/disk/error.h9
-rw-r--r--com32/gplinclude/disk/geom.h19
-rw-r--r--com32/gplinclude/disk/msdos.h9
-rw-r--r--com32/gplinclude/disk/partition.h14
-rw-r--r--com32/gplinclude/disk/read.h9
-rw-r--r--com32/gplinclude/disk/util.h14
-rw-r--r--com32/gplinclude/disk/write.h14
-rw-r--r--com32/gpllib/disk/error.c9
-rw-r--r--com32/gpllib/disk/geom.c14
-rw-r--r--com32/gpllib/disk/labels.c9
-rw-r--r--com32/gpllib/disk/msdos.c14
-rw-r--r--com32/gpllib/disk/read.c14
-rw-r--r--com32/gpllib/disk/util.c14
-rw-r--r--com32/gpllib/disk/write.c14
15 files changed, 190 insertions, 0 deletions
diff --git a/com32/gplinclude/disk/common.h b/com32/gplinclude/disk/common.h
index 6e4f3d61..c6df2f4e 100644
--- a/com32/gplinclude/disk/common.h
+++ b/com32/gplinclude/disk/common.h
@@ -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_
diff --git a/com32/gplinclude/disk/error.h b/com32/gplinclude/disk/error.h
index 3a7614e9..5eb54e01 100644
--- a/com32/gplinclude/disk/error.h
+++ b/com32/gplinclude/disk/error.h
@@ -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**);
diff --git a/com32/gplinclude/disk/geom.h b/com32/gplinclude/disk/geom.h
index 30dc86bf..0d3eed57 100644
--- a/com32/gplinclude/disk/geom.h
+++ b/com32/gplinclude/disk/geom.h
@@ -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_
diff --git a/com32/gplinclude/disk/msdos.h b/com32/gplinclude/disk/msdos.h
index b6dd9481..1f565f32 100644
--- a/com32/gplinclude/disk/msdos.h
+++ b/com32/gplinclude/disk/msdos.h
@@ -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_
diff --git a/com32/gplinclude/disk/partition.h b/com32/gplinclude/disk/partition.h
index 3bffa89e..be6bfaab 100644
--- a/com32/gplinclude/disk/partition.h
+++ b/com32/gplinclude/disk/partition.h
@@ -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_
diff --git a/com32/gplinclude/disk/read.h b/com32/gplinclude/disk/read.h
index fee10daf..6d6d9fe9 100644
--- a/com32/gplinclude/disk/read.h
+++ b/com32/gplinclude/disk/read.h
@@ -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_
diff --git a/com32/gplinclude/disk/util.h b/com32/gplinclude/disk/util.h
index dd0d5c02..df2eadda 100644
--- a/com32/gplinclude/disk/util.h
+++ b/com32/gplinclude/disk/util.h
@@ -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_
diff --git a/com32/gplinclude/disk/write.h b/com32/gplinclude/disk/write.h
index be6494fa..fe251f94 100644
--- a/com32/gplinclude/disk/write.h
+++ b/com32/gplinclude/disk/write.h
@@ -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_
diff --git a/com32/gpllib/disk/error.c b/com32/gpllib/disk/error.c
index 763dcfdc..6848ef3e 100644
--- a/com32/gpllib/disk/error.c
+++ b/com32/gpllib/disk/error.c
@@ -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>
diff --git a/com32/gpllib/disk/geom.c b/com32/gpllib/disk/geom.c
index 7bbb698d..02ac681b 100644
--- a/com32/gpllib/disk/geom.c
+++ b/com32/gpllib/disk/geom.c
@@ -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>
diff --git a/com32/gpllib/disk/labels.c b/com32/gpllib/disk/labels.c
index cb28be9d..7efe1ad1 100644
--- a/com32/gpllib/disk/labels.c
+++ b/com32/gpllib/disk/labels.c
@@ -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>
diff --git a/com32/gpllib/disk/msdos.c b/com32/gpllib/disk/msdos.c
index da28b8bb..9bfcacca 100644
--- a/com32/gpllib/disk/msdos.c
+++ b/com32/gpllib/disk/msdos.c
@@ -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>
diff --git a/com32/gpllib/disk/read.c b/com32/gpllib/disk/read.c
index a5cb120c..3fc0e0c7 100644
--- a/com32/gpllib/disk/read.c
+++ b/com32/gpllib/disk/read.c
@@ -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>
diff --git a/com32/gpllib/disk/util.c b/com32/gpllib/disk/util.c
index c03ed37b..6faac399 100644
--- a/com32/gpllib/disk/util.c
+++ b/com32/gpllib/disk/util.c
@@ -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>
diff --git a/com32/gpllib/disk/write.c b/com32/gpllib/disk/write.c
index cd585481..70c73ba4 100644
--- a/com32/gpllib/disk/write.c
+++ b/com32/gpllib/disk/write.c
@@ -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>