[LinuxBIOS] r2625 - in trunk/LinuxBIOSv2/src: cpu/amd/model_lx include/cpu/amd

svn at openbios.org svn at openbios.org
Thu May 3 23:36:51 CEST 2007


Author: uwe
Date: 2007-05-03 23:36:51 +0200 (Thu, 03 May 2007)
New Revision: 2625

Modified:
   trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpubug.c
   trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpureginit.c
   trunk/LinuxBIOSv2/src/cpu/amd/model_lx/model_lx_init.c
   trunk/LinuxBIOSv2/src/cpu/amd/model_lx/syspreinit.c
   trunk/LinuxBIOSv2/src/include/cpu/amd/lxdef.h
Log:
Add missing license headers to some Geode LX related files.

The following original authors agreed to the license:

 - Ronald G. Minnich <rminnich at gmail.com>
 - Indrek Kruusa <indrek.kruusa at artecdesign.ee>
 - Stefan Reinauer <stepan at coresystems.de>
 - Andrei Birjukov <andrei.birjukov at artecdesign.ee>

Signed-off-by: Jordan Crouse <jordan.crouse at amd.com>
Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpubug.c
===================================================================
--- trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpubug.c	2007-05-03 10:09:23 UTC (rev 2624)
+++ trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpubug.c	2007-05-03 21:36:51 UTC (rev 2625)
@@ -1,3 +1,25 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2006 Indrek Kruusa <indrek.kruusa at artecdesign.ee>
+ * Copyright (C) 2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * 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 <console/console.h>
 #include <arch/io.h>
 #include <stdint.h>

Modified: trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpureginit.c
===================================================================
--- trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpureginit.c	2007-05-03 10:09:23 UTC (rev 2624)
+++ trunk/LinuxBIOSv2/src/cpu/amd/model_lx/cpureginit.c	2007-05-03 21:36:51 UTC (rev 2625)
@@ -1,5 +1,25 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2006 Indrek Kruusa <indrek.kruusa at artecdesign.ee>
+ * Copyright (C) 2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * 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
+ */
 
-
 /* ***************************************************************************/
 /* **/
 /* *	BIST */

Modified: trunk/LinuxBIOSv2/src/cpu/amd/model_lx/model_lx_init.c
===================================================================
--- trunk/LinuxBIOSv2/src/cpu/amd/model_lx/model_lx_init.c	2007-05-03 10:09:23 UTC (rev 2624)
+++ trunk/LinuxBIOSv2/src/cpu/amd/model_lx/model_lx_init.c	2007-05-03 21:36:51 UTC (rev 2625)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2006 Indrek Kruusa <indrek.kruusa at artecdesign.ee>
+ * Copyright (C) 2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2006 Stefan Reinauer <stepan at coresystems.de>
+ * Copyright (C) 2006 Andrei Birjukov <andrei.birjukov at artecdesign.ee>
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * 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 <console/console.h>
 #include <device/device.h>
 #include <device/pci.h>

Modified: trunk/LinuxBIOSv2/src/cpu/amd/model_lx/syspreinit.c
===================================================================
--- trunk/LinuxBIOSv2/src/cpu/amd/model_lx/syspreinit.c	2007-05-03 10:09:23 UTC (rev 2624)
+++ trunk/LinuxBIOSv2/src/cpu/amd/model_lx/syspreinit.c	2007-05-03 21:36:51 UTC (rev 2625)
@@ -1,4 +1,28 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2006 Indrek Kruusa <indrek.kruusa at artecdesign.ee>
+ * Copyright (C) 2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * 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
+ */
+
 /* ***************************************************************************/
+
+/* ***************************************************************************/
 /* **/
 /* *	StartTimer1*/
 /* **/

Modified: trunk/LinuxBIOSv2/src/include/cpu/amd/lxdef.h
===================================================================
--- trunk/LinuxBIOSv2/src/include/cpu/amd/lxdef.h	2007-05-03 10:09:23 UTC (rev 2624)
+++ trunk/LinuxBIOSv2/src/include/cpu/amd/lxdef.h	2007-05-03 21:36:51 UTC (rev 2625)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2006 Indrek Kruusa <indrek.kruusa at artecdesign.ee>
+ * Copyright (C) 2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2006 Stefan Reinauer <stepan at coresystems.de>
+ * Copyright (C) 2006 Andrei Birjukov <andrei.birjukov at artecdesign.ee>
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * 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
+ */
+
 #ifndef CPU_AMD_LXDEF_H
 #define CPU_AMD_LXDEF_H
 #define	CPU_ID_1_X							0x540		/* Stepping ID 1.x*/





More information about the coreboot mailing list