Author: uwe Date: 2009-10-28 18:36:11 +0100 (Wed, 28 Oct 2009) New Revision: 4881
Modified: trunk/coreboot-v2/src/cpu/intel/model_106cx/Config.lb trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_disable.c trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_post.c trunk/coreboot-v2/src/cpu/intel/model_106cx/model_6cx_init.c trunk/coreboot-v2/src/cpu/intel/socket_441/Config.lb trunk/coreboot-v2/src/cpu/intel/socket_441/chip.h trunk/coreboot-v2/src/cpu/intel/socket_441/socket_441.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/Config.lb trunk/coreboot-v2/src/mainboard/intel/d945gclf/Kconfig trunk/coreboot-v2/src/mainboard/intel/d945gclf/Makefile.inc trunk/coreboot-v2/src/mainboard/intel/d945gclf/Options.lb trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ec.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/i945_pci_irqs.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ich7_pci_irqs.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/mainboard.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/platform.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/superio.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/thermal.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/video.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi_tables.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/auto.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/chip.h trunk/coreboot-v2/src/mainboard/intel/d945gclf/cmos.layout trunk/coreboot-v2/src/mainboard/intel/d945gclf/debug.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/devicetree.cb trunk/coreboot-v2/src/mainboard/intel/d945gclf/dmi.h trunk/coreboot-v2/src/mainboard/intel/d945gclf/dsdt.asl trunk/coreboot-v2/src/mainboard/intel/d945gclf/fadt.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/irq_tables.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard_smi.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/mptable.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/power_reset_check.c trunk/coreboot-v2/src/mainboard/intel/d945gclf/reset.c trunk/coreboot-v2/src/superio/smsc/lpc47m15x/Config.lb trunk/coreboot-v2/src/superio/smsc/lpc47m15x/chip.h trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x.h trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x_early_serial.c trunk/coreboot-v2/src/superio/smsc/lpc47m15x/superio.c trunk/coreboot-v2/targets/intel/d945gclf/Config-abuild.lb Log: Add some missing license headers, consistency fixes for others (trivial).
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: trunk/coreboot-v2/src/cpu/intel/model_106cx/Config.lb =================================================================== --- trunk/coreboot-v2/src/cpu/intel/model_106cx/Config.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/model_106cx/Config.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 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 +## 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 +## + uses CONFIG_HAVE_MOVNTI default CONFIG_HAVE_MOVNTI=1
Modified: trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_disable.c =================================================================== --- trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_disable.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_disable.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "cpu/x86/car/copy_and_run.c"
Modified: trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_post.c =================================================================== --- trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_post.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/model_106cx/cache_as_ram_post.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
__asm__ volatile (
Modified: trunk/coreboot-v2/src/cpu/intel/model_106cx/model_6cx_init.c =================================================================== --- trunk/coreboot-v2/src/cpu/intel/model_106cx/model_6cx_init.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/model_106cx/model_6cx_init.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <console/console.h>
Modified: trunk/coreboot-v2/src/cpu/intel/socket_441/Config.lb =================================================================== --- trunk/coreboot-v2/src/cpu/intel/socket_441/Config.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/socket_441/Config.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 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 +## 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 +## + config chip.h object socket_441.o dir /cpu/intel/model_106cx
Modified: trunk/coreboot-v2/src/cpu/intel/socket_441/chip.h =================================================================== --- trunk/coreboot-v2/src/cpu/intel/socket_441/chip.h 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/socket_441/chip.h 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2009 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 + * 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 + */ + extern struct chip_operations cpu_intel_socket_441_ops;
struct cpu_intel_socket_441_config {
Modified: trunk/coreboot-v2/src/cpu/intel/socket_441/socket_441.c =================================================================== --- trunk/coreboot-v2/src/cpu/intel/socket_441/socket_441.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/cpu/intel/socket_441/socket_441.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,7 +1,25 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2009 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 + * 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 <device/device.h> #include "chip.h"
- struct chip_operations cpu_intel_socket_441_ops = { CHIP_NAME("Socket 441 CPU") };
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/Config.lb =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/Config.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/Config.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ ## ## 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. +## 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 @@ -15,8 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
##
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/Kconfig 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/Kconfig 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 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 +## 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 +## + config BOARD_INTEL_D945GCLF bool "D945GCLF" select ARCH_X86
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/Makefile.inc =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/Makefile.inc 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/Makefile.inc 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ ## ## 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. +## 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 @@ -15,8 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
##
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/Options.lb =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/Options.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/Options.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ ## ## 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. +## 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 @@ -15,8 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
# Tables
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ec.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ec.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ec.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
Device(EC0)
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/i945_pci_irqs.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/i945_pci_irqs.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/i945_pci_irqs.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* This is board specific information: IRQ routing for the
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ich7_pci_irqs.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ich7_pci_irqs.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/ich7_pci_irqs.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* This is board specific information: IRQ routing for the
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/mainboard.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/mainboard.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/mainboard.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
Device (SLPB)
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/platform.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/platform.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/platform.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* The APM port can be used for generating software SMIs */
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/superio.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/superio.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/superio.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/thermal.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/thermal.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/thermal.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
// Thermal Zone
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/video.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/video.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi/video.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
// Brightness write
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi_tables.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi_tables.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/acpi_tables.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <types.h>
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/auto.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/auto.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/auto.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
// __ROMCC__ means: use "unsigned" for device, not a struct.
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/chip.h =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/chip.h 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/chip.h 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
extern struct chip_operations mainboard_ops;
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/cmos.layout =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/cmos.layout 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/cmos.layout 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ # # 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. +# 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 @@ -15,8 +14,7 @@ # # 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 +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #
# -----------------------------------------------------------------
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/debug.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/debug.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/debug.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#define SMBUS_MEM_DEVICE_START 0x50
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/devicetree.cb =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/devicetree.cb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/devicetree.cb 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ ## ## 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. +## 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 @@ -15,8 +14,7 @@ ## ## 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 +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
chip northbridge/intel/i945
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/dmi.h =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/dmi.h 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/dmi.h 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#define DMI_TABLE_SIZE 0x55
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/dsdt.asl =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/dsdt.asl 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/dsdt.asl 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
DefinitionBlock(
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/fadt.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/fadt.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/fadt.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <string.h>
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/irq_tables.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/irq_tables.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/irq_tables.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <arch/pirq_routing.h>
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,11 +14,9 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
- #include <device/device.h> #include <console/console.h> #include <boot/tables.h>
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard_smi.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard_smi.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/mainboard_smi.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <arch/io.h>
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/mptable.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/mptable.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/mptable.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/power_reset_check.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/power_reset_check.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/power_reset_check.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,11 +14,9 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
- static void power_down_reset_check(void) { uint8_t cmos;
Modified: trunk/coreboot-v2/src/mainboard/intel/d945gclf/reset.c =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/d945gclf/reset.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/mainboard/intel/d945gclf/reset.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -5,8 +5,7 @@ * * 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. + * 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 @@ -15,8 +14,7 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <arch/io.h>
Modified: trunk/coreboot-v2/src/superio/smsc/lpc47m15x/Config.lb =================================================================== --- trunk/coreboot-v2/src/superio/smsc/lpc47m15x/Config.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/superio/smsc/lpc47m15x/Config.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,2 +1,21 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 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 +## 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 +## + config chip.h object superio.o
Modified: trunk/coreboot-v2/src/superio/smsc/lpc47m15x/chip.h =================================================================== --- trunk/coreboot-v2/src/superio/smsc/lpc47m15x/chip.h 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/superio/smsc/lpc47m15x/chip.h 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2009 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 + * 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 + */ + struct chip_operations; extern struct chip_operations superio_smsc_lpc47m15x_ops;
Modified: trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x.h =================================================================== --- trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x.h 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x.h 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,3 +1,22 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2009 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 + * 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 + */ + #define LPC47M15X_FDC 0 /* Floppy */ #define LPC47M15X_PP 3 /* Parallel Port */ #define LPC47M15X_SP1 4 /* Com1 */
Modified: trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x_early_serial.c =================================================================== --- trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x_early_serial.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/superio/smsc/lpc47m15x/lpc47m15x_early_serial.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,5 +1,5 @@ /* - * lpc47m15x_early_serial.c: Pre-RAM driver for SMSC LPC47M15X Super I/O chip + * This file is part of the coreboot project. * * Copyright (C) 2009 coresystems GmbH * @@ -14,9 +14,11 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+/* Pre-RAM driver for the SMSC LPC47M15X Super I/O chip */ + #include <arch/romcc_io.h> #include "lpc47m15x.h"
Modified: trunk/coreboot-v2/src/superio/smsc/lpc47m15x/superio.c =================================================================== --- trunk/coreboot-v2/src/superio/smsc/lpc47m15x/superio.c 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/src/superio/smsc/lpc47m15x/superio.c 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,7 +1,7 @@ /* - * superio.c: RAM driver for SMSC LPC47M15X Super I/O chip + * This file is part of the coreboot project. * - * (C) 2009 coresystems GmbH + * Copyright (C) 2009 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 @@ -14,9 +14,11 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+/* RAM driver for the SMSC LPC47M15X Super I/O chip */ + #include <arch/io.h> #include <device/device.h> #include <device/pnp.h>
Modified: trunk/coreboot-v2/targets/intel/d945gclf/Config-abuild.lb =================================================================== --- trunk/coreboot-v2/targets/intel/d945gclf/Config-abuild.lb 2009-10-28 17:10:51 UTC (rev 4880) +++ trunk/coreboot-v2/targets/intel/d945gclf/Config-abuild.lb 2009-10-28 17:36:11 UTC (rev 4881) @@ -1,4 +1,21 @@ -# This will make a target directory of ./VENDOR_MAINBOARD +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007-2008 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 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 +##
target VENDOR_MAINBOARD mainboard VENDOR/MAINBOARD