diff options
-rw-r--r-- | com32/gplinclude/disk/common.h | 14 | ||||
-rw-r--r-- | com32/gplinclude/disk/error.h | 9 | ||||
-rw-r--r-- | com32/gplinclude/disk/geom.h | 19 | ||||
-rw-r--r-- | com32/gplinclude/disk/msdos.h | 9 | ||||
-rw-r--r-- | com32/gplinclude/disk/partition.h | 14 | ||||
-rw-r--r-- | com32/gplinclude/disk/read.h | 9 | ||||
-rw-r--r-- | com32/gplinclude/disk/util.h | 14 | ||||
-rw-r--r-- | com32/gplinclude/disk/write.h | 14 | ||||
-rw-r--r-- | com32/gpllib/disk/error.c | 9 | ||||
-rw-r--r-- | com32/gpllib/disk/geom.c | 14 | ||||
-rw-r--r-- | com32/gpllib/disk/labels.c | 9 | ||||
-rw-r--r-- | com32/gpllib/disk/msdos.c | 14 | ||||
-rw-r--r-- | com32/gpllib/disk/read.c | 14 | ||||
-rw-r--r-- | com32/gpllib/disk/util.c | 14 | ||||
-rw-r--r-- | com32/gpllib/disk/write.c | 14 |
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> |