[LinuxBIOS] r2615 - trunk/LinuxBIOSv2/src/devices

svn at openbios.org svn at openbios.org
Sun Apr 22 21:08:13 CEST 2007


Author: uwe
Date: 2007-04-22 21:08:13 +0200 (Sun, 22 Apr 2007)
New Revision: 2615

Modified:
   trunk/LinuxBIOSv2/src/devices/agp_device.c
   trunk/LinuxBIOSv2/src/devices/cardbus_device.c
   trunk/LinuxBIOSv2/src/devices/device.c
   trunk/LinuxBIOSv2/src/devices/device_util.c
   trunk/LinuxBIOSv2/src/devices/hypertransport.c
   trunk/LinuxBIOSv2/src/devices/pci_device.c
   trunk/LinuxBIOSv2/src/devices/pci_ops.c
   trunk/LinuxBIOSv2/src/devices/pci_rom.c
   trunk/LinuxBIOSv2/src/devices/pciexp_device.c
   trunk/LinuxBIOSv2/src/devices/pcix_device.c
   trunk/LinuxBIOSv2/src/devices/pnp_device.c
   trunk/LinuxBIOSv2/src/devices/root_device.c
   trunk/LinuxBIOSv2/src/devices/smbus_ops.c
Log:
Add explicit license headers to all files in src/device.

For files derived from the Linux kernel we merely add a small header
which states the origin of the file and the copyright owners of the
modifications to the file.
We know all files from Linux are licensed under the GPLv2.

Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/LinuxBIOSv2/src/devices/agp_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/agp_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/agp_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,4 +1,22 @@
-/* (c) 2005 Linux Networx GPL see COPYING for details */
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2005 Linux Networx
+ * (Written by Eric Biederman <ebiederman at 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
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * 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>

Modified: trunk/LinuxBIOSv2/src/devices/cardbus_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/cardbus_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/cardbus_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,4 +1,23 @@
-/* (c) 2005 Linux Networx GPL see COPYING for details */
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2005 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2005 Ronald G. Minnich <rminnich at 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.
+ *
+ * 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>

Modified: trunk/LinuxBIOSv2/src/devices/device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,7 +1,21 @@
 /*
+ * This file is part of the LinuxBIOS project.
+ *
+ * It was originally based on the Linux kernel (arch/i386/kernel/pci-pc.c).
+ *
+ * Modifications are:
+ * Copyright (C) 2003 Eric Biederman <ebiederm at xmission.com>
+ * Copyright (C) 2003-2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2003 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2004-2005 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005-2006 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ * Copyright (C) 2005-2006 Stefan Reinauer <stepan at openbios.org>
+ */
+
+/*
  *      (c) 1999--2000 Martin Mares <mj at suse.cz>
- *      (c) 2003 Eric Biederman <ebiederm at xmission.com>
- *	(c) 2003 Linux Networx
  */
 /* lots of mods by ron minnich (rminnich at lanl.gov), with 
  * the final architecture guidance from Tom Merritt (tjm at codegen.com)

Modified: trunk/LinuxBIOSv2/src/devices/device_util.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/device_util.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/device_util.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2003-2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2003 Greg Watson <jarrah at users.sourceforge.net>
+ * Copyright (C) 2004 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005-2006 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ *
+ * 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.
+ *
+ * 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/path.h>

Modified: trunk/LinuxBIOSv2/src/devices/hypertransport.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/hypertransport.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/hypertransport.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,6 +1,30 @@
 /*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2003-2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2004 David Hendricks <sc at flagen.com>
+ * Copyright (C) 2004 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005-2006 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ * Copyright (C) 2005-2006 Stefan Reinauer <stepan at openbios.org>
+ *
+ * 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.
+ *
+ * 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
+ */
+
+/*
 	2005.11 yhlu add let the real sb to use small uintid
-
 */
 
 #include <bitops.h>

Modified: trunk/LinuxBIOSv2/src/devices/pci_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pci_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pci_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,12 +1,25 @@
 /*
+ * This file is part of the LinuxBIOS project.
+ *
+ * It was originally based on the Linux kernel (drivers/pci/pci.c).
+ *
+ * Modifications are:
+ * Copyright (C) 2003-2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2003-2006 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2004-2005 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005-2006 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ * Copyright (C) 2005-2007 Stefan Reinauer <stepan at openbios.org>
+ */
+
+/*
  *      PCI Bus Services, see include/linux/pci.h for further explanation.
  *
  *      Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
  *      David Mosberger-Tang
  *
  *      Copyright 1997 -- 1999 Martin Mares <mj at atrey.karlin.mff.cuni.cz>
- *	
- *	Copyright 2003 -- Eric Biederman <ebiederman at lnxi.com>
  */
 
 #include <console/console.h>

Modified: trunk/LinuxBIOSv2/src/devices/pci_ops.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pci_ops.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pci_ops.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,3 +1,23 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at 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
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * 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/pciconf.h>
 #include <device/pci.h>

Modified: trunk/LinuxBIOSv2/src/devices/pci_rom.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pci_rom.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pci_rom.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,3 +1,26 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2005 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ * Copyright (C) 2005 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2005-2007 Stefan Reinauer <stepan at openbios.org>
+ *
+ * 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.
+ *
+ * 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/devices/pciexp_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pciexp_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pciexp_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,4 +1,22 @@
-/* (c) 2005 Linux Networx GPL see COPYING for details */
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2005 Linux Networx
+ * (Written by Eric Biederman <ebiederman at 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
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * 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>

Modified: trunk/LinuxBIOSv2/src/devices/pcix_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pcix_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pcix_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,4 +1,22 @@
-/* (c) 2005 Linux Networx GPL see COPYING for details */
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2005 Linux Networx
+ * (Written by Eric Biederman <ebiederman at 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
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * 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>

Modified: trunk/LinuxBIOSv2/src/devices/pnp_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/pnp_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/pnp_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,5 +1,25 @@
-/* Copyright 2004 Linux Networx  */
-/* This code is distrubted wihtout warrant under the GPL v2 (see COPYING) */
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2004 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ *
+ * 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.
+ *
+ * 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 <stdlib.h>

Modified: trunk/LinuxBIOSv2/src/devices/root_device.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/root_device.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/root_device.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,3 +1,27 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2003-2004 Linux Networx
+ * (Written by Eric Biederman <ebiederman at lnxi.com> for Linux Networx)
+ * Copyright (C) 2003 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2004-2005 Li-Ta Lo <ollie at lanl.gov>
+ * Copyright (C) 2005 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ *
+ * 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.
+ *
+ * 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/devices/smbus_ops.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/smbus_ops.c	2007-04-22 19:03:34 UTC (rev 2614)
+++ trunk/LinuxBIOSv2/src/devices/smbus_ops.c	2007-04-22 19:08:13 UTC (rev 2615)
@@ -1,3 +1,24 @@
+/*
+ * This file is part of the LinuxBIOS project.
+ *
+ * Copyright (C) 2004 Tyan
+ * (Written by Yinghai Lu <yhlu at tyan.com> for Tyan)
+ * Copyright (C) 2004 Li-Ta Lo <ollie at lanl.gov>
+ *
+ * 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.
+ *
+ * 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 <stdint.h>
 #include <device/device.h>





More information about the coreboot mailing list