From 88f55b2c12f94fd0451902ee2edc663f12e401f4 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 25 Sep 2009 18:43:02 +0000 Subject: some progress on kconfig: - northbridges are done - southbridges are done - Intel CPUs are done, with a design that the board only has to specify the socket it has, and the CPUs are pulled in automatically. There is some more cleanup possible in that area, but I'll do that later - a couple more mainboards compile: - intel/eagleheights - intel/jarrell - intel/mtarvon - intel/truxton - intel/xe7501devkit - sunw/ultra40 - supermicro/h8dme - tyan/s2850 - tyan/s2875 - via/epia - via/epia-cn - via/epia-m - via/epia-m700 - via/epia-n - via/pc2500e (PPC not considered, probably overlooked something) All of them only _build_, but some options are probably completely wrong. To be fixed later Signed-off-by: Patrick Georgi Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4673 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/ricoh/Makefile.inc | 2 +- src/southbridge/ricoh/rl5c476/Kconfig | 23 +++++++++++++++++++++++ src/southbridge/ricoh/rl5c476/Makefile.inc | 1 + 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 src/southbridge/ricoh/rl5c476/Kconfig create mode 100644 src/southbridge/ricoh/rl5c476/Makefile.inc (limited to 'src/southbridge/ricoh') diff --git a/src/southbridge/ricoh/Makefile.inc b/src/southbridge/ricoh/Makefile.inc index 81051c989b..3969392d44 100644 --- a/src/southbridge/ricoh/Makefile.inc +++ b/src/southbridge/ricoh/Makefile.inc @@ -1 +1 @@ -subdirs-y += rl5c476 +subdirs-$(CONFIG_SOUTHBRIDGE_RICOH_RL5C476) += rl5c476 diff --git a/src/southbridge/ricoh/rl5c476/Kconfig b/src/southbridge/ricoh/rl5c476/Kconfig new file mode 100644 index 0000000000..0c8f73f8cc --- /dev/null +++ b/src/southbridge/ricoh/rl5c476/Kconfig @@ -0,0 +1,23 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2008-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 SOUTHBRIDGE_RICOH_RL5C476 + bool + default n + diff --git a/src/southbridge/ricoh/rl5c476/Makefile.inc b/src/southbridge/ricoh/rl5c476/Makefile.inc new file mode 100644 index 0000000000..7f0599994c --- /dev/null +++ b/src/southbridge/ricoh/rl5c476/Makefile.inc @@ -0,0 +1 @@ +driver-y += rl5c476.o -- cgit v1.2.3