diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-01-06 09:14:08 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-01-06 09:14:08 +0000 |
commit | 753169dc251e3f5e71a9f678c93b68c040aebbf0 (patch) | |
tree | ceeb73865d95baead8572ac423ed633f2d5c5495 /src/arch/i386 | |
parent | 95c50c6091cdc700c79da832f61b2a94b3e5c87c (diff) |
Kconfig builds all boards now.
This patch also aligns the configuration of a couple of
boards more closely to what newconfig does.
Also, the romstrap inc/lds files are declared in the
Makefiles of the southbridges they belong to, instead of
some global file.
AMD CPUs have their own timer functions, so disable UDELAY_IO
for them and set HAVE_INIT_TIMER as appropriate, same for
emulation/qemu-x86.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5000 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386')
-rw-r--r-- | src/arch/i386/Makefile.tinybootblock.inc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/arch/i386/Makefile.tinybootblock.inc b/src/arch/i386/Makefile.tinybootblock.inc index 720ce583aa..003bac9688 100644 --- a/src/arch/i386/Makefile.tinybootblock.inc +++ b/src/arch/i386/Makefile.tinybootblock.inc @@ -24,19 +24,14 @@ bootblock_lds := $(src)/arch/i386/init/ldscript_failover.lb bootblock_lds += $(src)/cpu/x86/16bit/entry16.lds bootblock_lds += $(src)/cpu/x86/16bit/reset16.lds bootblock_lds += $(src)/arch/i386/lib/id.lds -ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) -bootblock_lds += $(src)/southbridge/via/k8t890/romstrap.lds -endif +bootblock_lds += $(chipset_bootblock_lds) bootblock_inc := $(src)/arch/i386/init/bootblock_prologue.c bootblock_inc += $(src)/cpu/x86/16bit/entry16.inc bootblock_inc += $(src)/cpu/x86/16bit/reset16.inc bootblock_inc += $(src)/cpu/x86/32bit/entry32.inc bootblock_inc += $(src)/arch/i386/lib/id.inc - -ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) -bootblock_inc += $(src)/southbridge/via/k8t890/romstrap.inc -endif +bootblock_inc += $(chipset_bootblock_inc) ifeq ($(CONFIG_SSE),y) bootblock_inc += $(src)/cpu/x86/sse_enable.inc |