diff options
Diffstat (limited to 'com32')
-rw-r--r-- | com32/LICENCE | 1 | ||||
-rw-r--r-- | com32/MCONFIG | 3 | ||||
-rw-r--r-- | com32/cmenu/Makefile | 1 | ||||
-rw-r--r-- | com32/hdt/Makefile | 3 | ||||
-rw-r--r-- | com32/include/com32.h | 27 | ||||
-rw-r--r-- | com32/include/syslinux/config.h | 1 | ||||
-rw-r--r-- | com32/include/syslinux/keyboard.h | 2 | ||||
-rw-r--r-- | com32/include/syslinux/memscan.h | 1 | ||||
-rw-r--r-- | com32/lib/sys/ansicon_write.c | 1 | ||||
-rw-r--r-- | com32/lib/sys/argv.c | 1 | ||||
-rw-r--r-- | com32/lib/sys/vesacon_write.c | 1 | ||||
-rw-r--r-- | com32/lib/syslinux/dsinfo.c | 1 | ||||
-rw-r--r-- | com32/lib/syslinux/keyboard.c | 2 | ||||
-rw-r--r-- | com32/lib/syslinux/load_linux.c | 1 | ||||
-rw-r--r-- | com32/lib/syslinux/memmap.c | 3 | ||||
-rw-r--r-- | com32/lib/syslinux/memscan.c | 1 | ||||
-rw-r--r-- | com32/lib/syslinux/shuffle.c | 1 | ||||
-rw-r--r-- | com32/menu/readconfig.c | 3 | ||||
-rw-r--r-- | com32/modules/Makefile | 1 | ||||
-rw-r--r-- | com32/modules/kbdmap.c | 2 |
20 files changed, 48 insertions, 9 deletions
diff --git a/com32/LICENCE b/com32/LICENCE index 8934e8fb..7eec7862 100644 --- a/com32/LICENCE +++ b/com32/LICENCE @@ -3,6 +3,7 @@ libcom32 and libutil are licensed under the MIT license: ## ----------------------------------------------------------------------- ## ## Copyright 2004-2009 H. Peter Anvin - All Rights Reserved +## Portions Copyright 2009 Intel Corporation; author: H. Peter Anvin ## ## Permission is hereby granted, free of charge, to any person ## obtaining a copy of this software and associated documentation diff --git a/com32/MCONFIG b/com32/MCONFIG index d1af9455..641111ab 100644 --- a/com32/MCONFIG +++ b/com32/MCONFIG @@ -1,6 +1,7 @@ ## -*- makefile -*- ------------------------------------------------------- ## -## Copyright 2008 H. Peter Anvin - All Rights Reserved +## Copyright 2008-2009 H. Peter Anvin - All Rights Reserved +## Copyright 2009 Intel Corporation; author: H. Peter Anvin ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 010fa122..db896e52 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -1,6 +1,7 @@ ## ----------------------------------------------------------------------- ## ## Copyright 2001-2009 H. Peter Anvin - All Rights Reserved +## Copyright 2009 Intel Corporation; author: H. Peter Anvin ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 787a845b..4056c76c 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -1,6 +1,7 @@ ## ----------------------------------------------------------------------- ## -## Copyright 2001-2008 H. Peter Anvin - All Rights Reserved +## Copyright 2001-2009 H. Peter Anvin - All Rights Reserved +## Copyright 2009 Intel Corporation; author: H. Peter Anvin ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/com32/include/com32.h b/com32/include/com32.h index 5c031ffb..44cd5732 100644 --- a/com32/include/com32.h +++ b/com32/include/com32.h @@ -1,6 +1,29 @@ /* ----------------------------------------------------------------------- * - * Not Copyright 2002-2008 H. Peter Anvin - * This file is in the public domain. + * + * Copyright 2002-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom + * the Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall + * be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * * ----------------------------------------------------------------------- */ /* diff --git a/com32/include/syslinux/config.h b/com32/include/syslinux/config.h index ed4bf247..ade2c4b1 100644 --- a/com32/include/syslinux/config.h +++ b/com32/include/syslinux/config.h @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/include/syslinux/keyboard.h b/com32/include/syslinux/keyboard.h index 9d4f1409..8f21ad07 100644 --- a/com32/include/syslinux/keyboard.h +++ b/com32/include/syslinux/keyboard.h @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/include/syslinux/memscan.h b/com32/include/syslinux/memscan.h index 98ed806f..24c4edaf 100644 --- a/com32/include/syslinux/memscan.h +++ b/com32/include/syslinux/memscan.h @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/sys/ansicon_write.c b/com32/lib/sys/ansicon_write.c index 01d69da1..7bdc8cbd 100644 --- a/com32/lib/sys/ansicon_write.c +++ b/com32/lib/sys/ansicon_write.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2004-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/sys/argv.c b/com32/lib/sys/argv.c index 8b55d940..b405a8d7 100644 --- a/com32/lib/sys/argv.c +++ b/com32/lib/sys/argv.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2004-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/sys/vesacon_write.c b/com32/lib/sys/vesacon_write.c index 48c1ed44..7ca25ac7 100644 --- a/com32/lib/sys/vesacon_write.c +++ b/com32/lib/sys/vesacon_write.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2004-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/dsinfo.c b/com32/lib/syslinux/dsinfo.c index b3d3b3cd..60f7e998 100644 --- a/com32/lib/syslinux/dsinfo.c +++ b/com32/lib/syslinux/dsinfo.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2008-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/keyboard.c b/com32/lib/syslinux/keyboard.c index 2635dfb9..f4510e61 100644 --- a/com32/lib/syslinux/keyboard.c +++ b/com32/lib/syslinux/keyboard.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/load_linux.c b/com32/lib/syslinux/load_linux.c index daea1266..41ebcb70 100644 --- a/com32/lib/syslinux/load_linux.c +++ b/com32/lib/syslinux/load_linux.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 H. Peter Anvin - All Rights Reserved * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/memmap.c b/com32/lib/syslinux/memmap.c index f2538030..a5fdea3e 100644 --- a/com32/lib/syslinux/memmap.c +++ b/com32/lib/syslinux/memmap.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2007-2008 H. Peter Anvin - All Rights Reserved + * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 H. Peter Anvin - All Rights Reserved * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/memscan.c b/com32/lib/syslinux/memscan.c index 01ac6948..69f8a189 100644 --- a/com32/lib/syslinux/memscan.c +++ b/com32/lib/syslinux/memscan.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 H. Peter Anvin - All Rights Reserved * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/lib/syslinux/shuffle.c b/com32/lib/syslinux/shuffle.c index b891722d..d8079986 100644 --- a/com32/lib/syslinux/shuffle.c +++ b/com32/lib/syslinux/shuffle.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * * Copyright 2007-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index 01dadff9..c276c0bf 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -1,6 +1,7 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2004-2008 H. Peter Anvin - All Rights Reserved + * Copyright 2004-2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 5a8a88c4..764737d1 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -1,6 +1,7 @@ ## ----------------------------------------------------------------------- ## ## Copyright 2001-2009 H. Peter Anvin - All Rights Reserved +## Copyright 2009 Intel Corporation; author: H. Peter Anvin ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/com32/modules/kbdmap.c b/com32/modules/kbdmap.c index 866acfc2..7e36a35d 100644 --- a/com32/modules/kbdmap.c +++ b/com32/modules/kbdmap.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 2009 H. Peter Anvin - All Rights Reserved + * Copyright 2009 Intel Corporation; author: H. Peter Anvin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by |