diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-25 18:43:02 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-25 18:43:02 +0000 |
commit | 88f55b2c12f94fd0451902ee2edc663f12e401f4 (patch) | |
tree | 446179d449934a1dafeb2a2df44b8a515e380807 /src/southbridge/winbond | |
parent | 6bb3bdf869ab06a972520c5a58c6fc9b7cfe99f4 (diff) |
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 <patrick.georgi@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4673 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/winbond')
-rw-r--r-- | src/southbridge/winbond/Makefile.inc | 2 | ||||
-rw-r--r-- | src/southbridge/winbond/w83c553/Kconfig | 3 | ||||
-rw-r--r-- | src/southbridge/winbond/w83c553/Makefile.inc | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/src/southbridge/winbond/Makefile.inc b/src/southbridge/winbond/Makefile.inc index 004313a7fa..7926be7e9c 100644 --- a/src/southbridge/winbond/Makefile.inc +++ b/src/southbridge/winbond/Makefile.inc @@ -1 +1 @@ -subdirs-y += w83c553 +subdirs-$(CONFIG_SOUTHBRIDGE_WINBOND_W83C553) += w83c553 diff --git a/src/southbridge/winbond/w83c553/Kconfig b/src/southbridge/winbond/w83c553/Kconfig new file mode 100644 index 0000000000..b50247f250 --- /dev/null +++ b/src/southbridge/winbond/w83c553/Kconfig @@ -0,0 +1,3 @@ +config SOUTHBRIDGE_WINBOND_W83C553 + bool + default n diff --git a/src/southbridge/winbond/w83c553/Makefile.inc b/src/southbridge/winbond/w83c553/Makefile.inc new file mode 100644 index 0000000000..ef1156822f --- /dev/null +++ b/src/southbridge/winbond/w83c553/Makefile.inc @@ -0,0 +1,2 @@ +driver-y += w83c553f.o +driver-y += w83c553f_ide.o |