diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2009-08-20 18:05:31 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2009-08-20 18:05:31 +0000 |
commit | d82e12858f34770a38dc93136f686ebab0e971ed (patch) | |
tree | cd36da4f912399710cba8be208b2bad7b031770e /src/mainboard/via/Kconfig | |
parent | b203c2f95e8174bff1170a47d06186a315de4997 (diff) |
This goes a surprisingly long way to building the epia-n. It also has
important corrections to the Kconfig and Makefile.inc that were there. I
would like to go ahead and get this in, because I don't want anyone to
continue using what is in the upstream tree as it now exists.
I also tested old-style build with this and it did not break anything.
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4559 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/via/Kconfig')
-rw-r--r-- | src/mainboard/via/Kconfig | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/src/mainboard/via/Kconfig b/src/mainboard/via/Kconfig index ba0f11b082..4d0a55b6bf 100644 --- a/src/mainboard/via/Kconfig +++ b/src/mainboard/via/Kconfig @@ -2,36 +2,9 @@ choice prompt "Mainboard model" depends on VENDOR_VIA -config BOARD_VIA_VT8454C - bool "vt8454c" - select ARCH_X86 - select CPU_VIA_C7 - select NORTHBRIDGE_VIA_CX700 -# select SOUTHBRIDGE_INTEL_I82801GX - select SUPERIO_VIA_VT1211 - select PIRQ_TABLE -# select MMCONF_SUPPORT - select USE_PRINTK_IN_CAR - help - Kontron 986LCD-M Series mainboards -endchoice - -config MAINBOARD_DIR - string - default via/vt8454c - depends on BOARD_VIA_VT8454C + source "src/mainboard/via/vt8454c/Kconfig" + source "src/mainboard/via/epia-n/Kconfig" -config DCACHE_RAM_BASE - hex - default 0xffef0000 - depends on BOARD_VIA_VT8454C +endchoice -config DCACHE_RAM_SIZE - hex - default 0x8000 - depends on BOARD_VIA_VT8454C -config MAINBOARD_PART_NUMBER - string - default "VT8454C" - depends on BOARD_VIA_VT8454C |