Author: uwe Date: 2007-05-20 22:35:59 +0200 (Sun, 20 May 2007) New Revision: 330
Modified: LinuxBIOSv3/HACKING LinuxBIOSv3/Makefile LinuxBIOSv3/arch/Kconfig LinuxBIOSv3/arch/powerpc/Kconfig LinuxBIOSv3/arch/x86/Kconfig LinuxBIOSv3/arch/x86/Makefile LinuxBIOSv3/arch/x86/serial.c LinuxBIOSv3/arch/x86/stage0_i586.S LinuxBIOSv3/arch/x86/udelay_io.c LinuxBIOSv3/device/Kconfig LinuxBIOSv3/device/Makefile LinuxBIOSv3/include/device/device.h LinuxBIOSv3/include/lar.h LinuxBIOSv3/include/lib.h LinuxBIOSv3/include/stdlib.h LinuxBIOSv3/include/tables.h LinuxBIOSv3/lib/Kconfig LinuxBIOSv3/lib/Makefile LinuxBIOSv3/lib/delay.c LinuxBIOSv3/lib/elfboot.c LinuxBIOSv3/lib/lar.c LinuxBIOSv3/lib/stage2.c LinuxBIOSv3/lib/tables.c LinuxBIOSv3/lib/vsprintf.c LinuxBIOSv3/lib/vtxprintf.c LinuxBIOSv3/mainboard/amd/Kconfig LinuxBIOSv3/mainboard/amd/norwich/Kconfig LinuxBIOSv3/mainboard/amd/norwich/Makefile LinuxBIOSv3/mainboard/emulation/qemu-x86/Kconfig LinuxBIOSv3/mainboard/emulation/qemu-x86/Makefile LinuxBIOSv3/mainboard/emulation/qemu-x86/mainboard.c LinuxBIOSv3/mainboard/emulation/qemu-x86/vga.c LinuxBIOSv3/northbridge/Kconfig LinuxBIOSv3/northbridge/Makefile LinuxBIOSv3/northbridge/amd/Kconfig LinuxBIOSv3/northbridge/amd/Makefile LinuxBIOSv3/northbridge/amd/geodelx/Makefile LinuxBIOSv3/northbridge/intel/Kconfig LinuxBIOSv3/northbridge/intel/Makefile LinuxBIOSv3/northbridge/intel/i440bxemulation/Makefile LinuxBIOSv3/northbridge/intel/i440bxemulation/i440bx.c LinuxBIOSv3/southbridge/Kconfig LinuxBIOSv3/southbridge/Makefile LinuxBIOSv3/southbridge/amd/Kconfig LinuxBIOSv3/southbridge/amd/Makefile LinuxBIOSv3/southbridge/amd/cs5536/Makefile LinuxBIOSv3/southbridge/intel/Kconfig LinuxBIOSv3/southbridge/intel/Makefile LinuxBIOSv3/southbridge/intel/i82371eb/i82371eb.c LinuxBIOSv3/superio/Kconfig LinuxBIOSv3/superio/Makefile LinuxBIOSv3/superio/winbond/Kconfig LinuxBIOSv3/superio/winbond/Makefile LinuxBIOSv3/superio/winbond/w83627hf/Makefile LinuxBIOSv3/util/Makefile LinuxBIOSv3/util/lar/Makefile LinuxBIOSv3/util/lar/bootblock.c LinuxBIOSv3/util/lar/create.c LinuxBIOSv3/util/lar/example.c LinuxBIOSv3/util/lar/extract.c LinuxBIOSv3/util/lar/lar.c LinuxBIOSv3/util/lar/lar.h LinuxBIOSv3/util/lar/lib.c LinuxBIOSv3/util/lar/lib.h LinuxBIOSv3/util/lar/list.c LinuxBIOSv3/util/nrv2b/Makefile LinuxBIOSv3/util/options/Makefile LinuxBIOSv3/util/xcompile/xcompile Log: Fix various license headers.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: LinuxBIOSv3/HACKING =================================================================== --- LinuxBIOSv3/HACKING 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/HACKING 2007-05-20 20:35:59 UTC (rev 330) @@ -98,3 +98,7 @@ Source: Linux kernel, arch/i386/boot/setup.S Current version we use: Linux 2.2.26
+* console/vsprintf.c, console/vtxprintf.c: GPLv2 + Source: Linux kernel, lib/vsprintf.c + Current version we use: ? +
Modified: LinuxBIOSv3/Makefile =================================================================== --- LinuxBIOSv3/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -4,7 +4,7 @@ ## LinuxBIOS build system Lbuild ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/Kconfig =================================================================== --- LinuxBIOSv3/arch/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/powerpc/Kconfig =================================================================== --- LinuxBIOSv3/arch/powerpc/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/powerpc/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/x86/Kconfig =================================================================== --- LinuxBIOSv3/arch/x86/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/x86/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/x86/Makefile =================================================================== --- LinuxBIOSv3/arch/x86/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/x86/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/x86/serial.c =================================================================== --- LinuxBIOSv3/arch/x86/serial.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/x86/serial.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,9 +1,8 @@ /* - * serial.c -- uart init function + * This file is part of the LinuxBIOS project. * * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. - * + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com * * This program is free software; you can redistribute it and/or modify @@ -23,6 +22,9 @@ #include <io.h> #include <uart8250.h>
+/** + * UART init. + */ void uart_init(void) { unsigned ttysx_div;
Modified: LinuxBIOSv3/arch/x86/stage0_i586.S =================================================================== --- LinuxBIOSv3/arch/x86/stage0_i586.S 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/x86/stage0_i586.S 2007-05-20 20:35:59 UTC (rev 330) @@ -1,17 +1,12 @@ -## Note: this file contains _multiple_ copyright/license headers, see below. - ## ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2000,2007 Ronald G. Minnich rminnich@gmail.com -## ## Copyright (C) 2005 Eswar Nallusamy, LANL -## ## Copyright (C) 2005 Tyan -## Written by Yinghai Lu yhlu@tyan.com for Tyan. -## +## (Written by Yinghai Lu yhlu@tyan.com for Tyan) ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/arch/x86/udelay_io.c =================================================================== --- LinuxBIOSv3/arch/x86/udelay_io.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/arch/x86/udelay_io.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2005 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/device/Kconfig =================================================================== --- LinuxBIOSv3/device/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/device/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/device/Makefile =================================================================== --- LinuxBIOSv3/device/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/device/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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 @@ -25,6 +25,5 @@ $(Q)$(CC) $(INITCFLAGS) -c $< -o $@
STAGE2_DEVICE_OBJ = device.o device_util.o root_device.o \ - pci_device.o pci_ops.o pci_rom.o \ - pnp_device.o + pci_device.o pci_ops.o pci_rom.o pnp_device.o
Modified: LinuxBIOSv3/include/device/device.h =================================================================== --- LinuxBIOSv3/include/device/device.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/include/device/device.h 2007-05-20 20:35:59 UTC (rev 330) @@ -1,5 +1,6 @@ /* * This file is part of the LinuxBIOS project. + * * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com * * This program is free software; you can redistribute it and/or modify
Modified: LinuxBIOSv3/include/lar.h =================================================================== --- LinuxBIOSv3/include/lar.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/include/lar.h 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2006 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * This file is dual-licensed. You can choose between: * - The GNU GPL, version 2, as published by the Free Software Foundation
Modified: LinuxBIOSv3/include/lib.h =================================================================== --- LinuxBIOSv3/include/lib.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/include/lib.h 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/include/stdlib.h =================================================================== --- LinuxBIOSv3/include/stdlib.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/include/stdlib.h 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/include/tables.h =================================================================== --- LinuxBIOSv3/include/tables.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/include/tables.h 2007-05-20 20:35:59 UTC (rev 330) @@ -1,12 +1,11 @@ /* - * table management structs and prototypes for LinuxBIOS + * This file is part of the LinuxBIOS project. * - * ALL structs and prototypes for tables that LinuxBIOS generates should be - * defined here. + * Copyright (C) 2002 Linux Networx + * (Written by Eric Biederman ebiederman@lnxi.com for Linux Networx) + * Copyright (C) 2005-2007 coresystems GmbH + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * - * Copyright (C) 2002 Eric Biederman, Linux NetworX - * Copyright (C) 2005-2007 coresystems GmbH info@coresystems.de - * * 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 * the Free Software Foundation; version 2 of the License. @@ -24,6 +23,13 @@ #ifndef TABLES_H #define TABLES_H
+/* + * Table management structs and prototypes for LinuxBIOS. + * + * ALL structs and prototypes for tables that LinuxBIOS generates should be + * defined here. + */ + struct lb_memory *write_tables(void);
/* The LinuxBIOS table information is for conveying information
Modified: LinuxBIOSv3/lib/Kconfig =================================================================== --- LinuxBIOSv3/lib/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,8 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. -## +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## Copyright (C) 2007 Uwe Hermann uwe@hermann-uwe.de ## ## This program is free software; you can redistribute it and/or modify
Modified: LinuxBIOSv3/lib/Makefile =================================================================== --- LinuxBIOSv3/lib/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/lib/delay.c =================================================================== --- LinuxBIOSv3/lib/delay.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/delay.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2001 Linux Networx - * Written by Eric Biederman + * (Written by Eric Biederman ebiederman@lnxi.com for Linux Networx) * * 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 @@ -27,6 +27,7 @@ udelay(1000); } } + void delay(unsigned int secs) { unsigned int i;
Modified: LinuxBIOSv3/lib/elfboot.c =================================================================== --- LinuxBIOSv3/lib/elfboot.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/elfboot.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,9 +1,10 @@ /* - * elfboot -- boot elf images - * - * (C)opyright 2002 Eric Biederman, Linux NetworX - * (C)opyright 2007 Ronald G. Minnich + * This file is part of the LinuxBIOS project. * + * Copyright (C) 2002 Linux Networx + * (Written by Eric Biederman ebiederman@lnxi.com for Linux Networx) + * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com + * * 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 * the Free Software Foundation; version 2 of the License. @@ -16,9 +17,10 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA - * */
+/* elfboot -- boot elf images */ + /* This code is modified from the LinuxBIOS V2 version as follows: * great simplified * checksum removed -- lar can do that
Modified: LinuxBIOSv3/lib/lar.c =================================================================== --- LinuxBIOSv3/lib/lar.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/lar.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/lib/stage2.c =================================================================== --- LinuxBIOSv3/lib/stage2.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/stage2.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,9 +2,8 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2007 Ron Minnich rminnich@lanl.gov - * * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/lib/tables.c =================================================================== --- LinuxBIOSv3/lib/tables.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/tables.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,8 +1,8 @@ /* - * table management code for Linux BIOS - * This is the architecture-independent driver; it has a hook to architecture-dependent code. + * This file is part of the LinuxBIOS project. * - * Copyright (C) 2002 Eric Biederman, Linux NetworX + * Copyright (C) 2002 Linux Networx + * (Written by Eric Biederman ebiederman@lnxi.com for Linux Networx) * * 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 @@ -16,15 +16,20 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA + */ + +/* + * Table management code for LinuxBIOS. * + * This is the architecture-independent driver; it has a hook to + * architecture-dependent code. */
#include <console.h> -//#include <cpu.h> +// #include <cpu.h> #include <tables.h>
-struct lb_memory * -write_tables(void) +struct lb_memory *write_tables(void) { return arch_write_tables(); }
Modified: LinuxBIOSv3/lib/vsprintf.c =================================================================== --- LinuxBIOSv3/lib/vsprintf.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/vsprintf.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,28 +1,15 @@ /* - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. + * This file is part of the LinuxBIOS project. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * It is based on the Linux kernel (lib/vsprintf.c). * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Modifications are: + * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com */
-/* - * linux/lib/vsprintf.c - * - * Copyright (C) 1991, 1992 Linus Torvalds - */ - +/* Copyright (C) 1991, 1992 Linus Torvalds */ /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */ -/* - * Wirzenius wrote this portably, Torvalds fucked it up :-) - */ +/* Wirzenius wrote this portably, Torvalds fucked it up :-) */
#include <stdarg.h> #include <string.h>
Modified: LinuxBIOSv3/lib/vtxprintf.c =================================================================== --- LinuxBIOSv3/lib/vtxprintf.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/lib/vtxprintf.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,23 +1,13 @@ /* - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. + * This file is part of the LinuxBIOS project. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * It is based on the Linux kernel (lib/vsprintf.c). * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Modifications are: + * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com */
-/* vtxprintf.c, from - * linux/lib/vsprintf.c - * - * Copyright (C) 1991, 1992 Linus Torvalds - */ +/* Copyright (C) 1991,1992 Linus Torvalds */
#include <stdarg.h> #include <string.h>
Modified: LinuxBIOSv3/mainboard/amd/Kconfig =================================================================== --- LinuxBIOSv3/mainboard/amd/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/amd/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/mainboard/amd/norwich/Kconfig =================================================================== --- LinuxBIOSv3/mainboard/amd/norwich/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/amd/norwich/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/mainboard/amd/norwich/Makefile =================================================================== --- LinuxBIOSv3/mainboard/amd/norwich/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/amd/norwich/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/mainboard/emulation/qemu-x86/Kconfig =================================================================== --- LinuxBIOSv3/mainboard/emulation/qemu-x86/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/emulation/qemu-x86/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## Copyright (C) 2007 Uwe Hermann uwe@hermann-uwe.de ## ## This program is free software; you can redistribute it and/or modify
Modified: LinuxBIOSv3/mainboard/emulation/qemu-x86/Makefile =================================================================== --- LinuxBIOSv3/mainboard/emulation/qemu-x86/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/emulation/qemu-x86/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/mainboard/emulation/qemu-x86/mainboard.c =================================================================== --- LinuxBIOSv3/mainboard/emulation/qemu-x86/mainboard.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/emulation/qemu-x86/mainboard.c 2007-05-20 20:35:59 UTC (rev 330) @@ -3,7 +3,7 @@ * * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/mainboard/emulation/qemu-x86/vga.c =================================================================== --- LinuxBIOSv3/mainboard/emulation/qemu-x86/vga.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/mainboard/emulation/qemu-x86/vga.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,6 +2,7 @@ * This file is part of the LinuxBIOS project. * * Copyright (C) 2007 coresystems GmbH + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/northbridge/Kconfig =================================================================== --- LinuxBIOSv3/northbridge/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/Makefile =================================================================== --- LinuxBIOSv3/northbridge/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/amd/Kconfig =================================================================== --- LinuxBIOSv3/northbridge/amd/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/amd/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/amd/Makefile =================================================================== --- LinuxBIOSv3/northbridge/amd/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/amd/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/amd/geodelx/Makefile =================================================================== --- LinuxBIOSv3/northbridge/amd/geodelx/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/amd/geodelx/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/intel/Kconfig =================================================================== --- LinuxBIOSv3/northbridge/intel/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/intel/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/intel/Makefile =================================================================== --- LinuxBIOSv3/northbridge/intel/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/intel/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/intel/i440bxemulation/Makefile =================================================================== --- LinuxBIOSv3/northbridge/intel/i440bxemulation/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/intel/i440bxemulation/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2006-2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/northbridge/intel/i440bxemulation/i440bx.c =================================================================== --- LinuxBIOSv3/northbridge/intel/i440bxemulation/i440bx.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/northbridge/intel/i440bxemulation/i440bx.c 2007-05-20 20:35:59 UTC (rev 330) @@ -1,4 +1,25 @@ /* + * This file is part of the LinuxBIOS project. + * + * Copyright (C) 2000 Ron Minnich, Advanced Computing Lab, LANL + * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/* * This software and ancillary information (herein called SOFTWARE ) * called LinuxBIOS is made available under the terms described * here. The SOFTWARE has been approved for release with associated @@ -17,23 +38,6 @@ * it with the version available from LANL. */
-/* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL - * Copyright (C) 2007 Ronald G. Minnich rminnich@gmail.com - * 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 - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - #include <types.h> #include <console.h> #include <device/device.h>
Modified: LinuxBIOSv3/southbridge/Kconfig =================================================================== --- LinuxBIOSv3/southbridge/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/Makefile =================================================================== --- LinuxBIOSv3/southbridge/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/amd/Kconfig =================================================================== --- LinuxBIOSv3/southbridge/amd/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/amd/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/amd/Makefile =================================================================== --- LinuxBIOSv3/southbridge/amd/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/amd/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/amd/cs5536/Makefile =================================================================== --- LinuxBIOSv3/southbridge/amd/cs5536/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/amd/cs5536/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/intel/Kconfig =================================================================== --- LinuxBIOSv3/southbridge/intel/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/intel/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/intel/Makefile =================================================================== --- LinuxBIOSv3/southbridge/intel/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/intel/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/southbridge/intel/i82371eb/i82371eb.c =================================================================== --- LinuxBIOSv3/southbridge/intel/i82371eb/i82371eb.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/southbridge/intel/i82371eb/i82371eb.c 2007-05-20 20:35:59 UTC (rev 330) @@ -30,13 +30,10 @@
/* The plain PCI device uses the standard PCI operations. */
- - /* TODO: bring in the rest of the v2 code for controlling IDE enable. * This is just placeholder code for now */
- static void i82371eb_isa_init(struct device *dev) { rtc_init(0); @@ -119,10 +116,6 @@ .ops_pci = &pci_dev_ops_pci, };
-/* - * - */ - struct constructor i82371eb_constructors[] = { {.id = {.type = DEVICE_ID_PCI, .u = {.pci = {.vendor = 0x8086,.device = 0x7000}}},
Modified: LinuxBIOSv3/superio/Kconfig =================================================================== --- LinuxBIOSv3/superio/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/superio/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/superio/Makefile =================================================================== --- LinuxBIOSv3/superio/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/superio/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/superio/winbond/Kconfig =================================================================== --- LinuxBIOSv3/superio/winbond/Kconfig 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/superio/winbond/Kconfig 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/superio/winbond/Makefile =================================================================== --- LinuxBIOSv3/superio/winbond/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/superio/winbond/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/superio/winbond/w83627hf/Makefile =================================================================== --- LinuxBIOSv3/superio/winbond/w83627hf/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/superio/winbond/w83627hf/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/util/Makefile =================================================================== --- LinuxBIOSv3/util/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,6 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/util/lar/Makefile =================================================================== --- LinuxBIOSv3/util/lar/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ ## lar - LinuxBIOS archiver ## ## Copyright (C) 2006 coresystems GmbH -## Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/util/lar/bootblock.c =================================================================== --- LinuxBIOSv3/util/lar/bootblock.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/bootblock.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/create.c =================================================================== --- LinuxBIOSv3/util/lar/create.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/create.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/example.c =================================================================== --- LinuxBIOSv3/util/lar/example.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/example.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * This file is dual-licensed. You can choose between: * - The GNU GPL, version 2, as published by the Free Software Foundation
Modified: LinuxBIOSv3/util/lar/extract.c =================================================================== --- LinuxBIOSv3/util/lar/extract.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/extract.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/lar.c =================================================================== --- LinuxBIOSv3/util/lar/lar.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/lar.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/lar.h =================================================================== --- LinuxBIOSv3/util/lar/lar.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/lar.h 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * This file is dual-licensed. You can choose between: * - The GNU GPL, version 2, as published by the Free Software Foundation
Modified: LinuxBIOSv3/util/lar/lib.c =================================================================== --- LinuxBIOSv3/util/lar/lib.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/lib.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/lib.h =================================================================== --- LinuxBIOSv3/util/lar/lib.h 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/lib.h 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/lar/list.c =================================================================== --- LinuxBIOSv3/util/lar/list.c 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/lar/list.c 2007-05-20 20:35:59 UTC (rev 330) @@ -2,7 +2,7 @@ * lar - LinuxBIOS archiver * * Copyright (C) 2006-2007 coresystems GmbH - * Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. + * (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) * * 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
Modified: LinuxBIOSv3/util/nrv2b/Makefile =================================================================== --- LinuxBIOSv3/util/nrv2b/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/nrv2b/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,6 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/util/options/Makefile =================================================================== --- LinuxBIOSv3/util/options/Makefile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/options/Makefile 2007-05-20 20:35:59 UTC (rev 330) @@ -2,6 +2,7 @@ ## This file is part of the LinuxBIOS project. ## ## Copyright (C) 2007 coresystems GmbH +## (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) ## ## 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
Modified: LinuxBIOSv3/util/xcompile/xcompile =================================================================== --- LinuxBIOSv3/util/xcompile/xcompile 2007-05-20 20:28:04 UTC (rev 329) +++ LinuxBIOSv3/util/xcompile/xcompile 2007-05-20 20:35:59 UTC (rev 330) @@ -3,7 +3,7 @@ # This file is part of the LinuxBIOS project. # # Copyright (C) 2007 coresystems GmbH -# Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH. +# (Written by Stefan Reinauer stepan@coresystems.de for coresystems GmbH) # # 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