diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-06-19 21:18:14 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-06-19 21:18:14 +0000 |
commit | f17f647a62427e7241c6cbee0a81be5a46072cd9 (patch) | |
tree | 4c8b4ab76ce6b796d8c2318c5ab176dfd496456f /src/pc80 | |
parent | 24fbb7d66f6938b942e4481d2821023fbb7cd467 (diff) | |
download | coreboot-f17f647a62427e7241c6cbee0a81be5a46072cd9.tar.xz |
Undo my ugly commit that added uses clauses in lots of places instead of one.
Fix configuration of all boards. (Abuild tested)
Hopefully fix compilation of PPC boards (they've never compiled for me.)
Apologize profusely.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4367 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/pc80')
-rw-r--r-- | src/pc80/Config.lb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/pc80/Config.lb b/src/pc80/Config.lb index c946f8b036..3b9bc5b963 100644 --- a/src/pc80/Config.lb +++ b/src/pc80/Config.lb @@ -1,5 +1,7 @@ uses CONFIG_IDE uses CONFIG_UDELAY_IO +uses CONFIG_USE_INIT +uses CONFIG_ARCH_X86 object mc146818rtc.o object isa-dma.o @@ -18,13 +20,8 @@ dir vga object keyboard.o -if CONFIG_CONSOLE_SERIAL8250 +if CONFIG_ARCH_X86 if CONFIG_USE_INIT - # We should check whether we're on x86, but our - # config tool has a problem with that. So we check - # for a flag that is only used when we want this symbol: - if USE_DCACHE_RAM - initobject serial.o - end + initobject serial.o end end |