diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-20 13:22:02 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-20 13:22:02 +0000 |
commit | 169dc7e5ac948ccaecadcfd243551f4247df866d (patch) | |
tree | 9d5bab8e411eb785dc958f284519cc7ca78c24c5 /src/arch/i386/lib/Makefile.inc | |
parent | 29ceae2c370fcd5a7c159771050611f03de006ba (diff) | |
download | coreboot-169dc7e5ac948ccaecadcfd243551f4247df866d.tar.xz |
- move src/arch/i386/smp/ioapic.c to src/arch/i386/lib/ioapic.c (has
nothing to do with SMP)
- move src/arch/i386/smp/mpspec.c to src/arch/i386/boot/mpspec.c (where
acpi, pirq and coreboot table generation lives)
- modify src/arch/i386/boot/Makefile.inc,
src/arch/i386/lib/Makefile.inc
and src/arch/i386/smp/Makefile.inc accordingly
- src/arch/i386/smp is now empty. drop it.
- drop src/arch/i386/init/car.S (unused)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/lib/Makefile.inc')
-rw-r--r-- | src/arch/i386/lib/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/i386/lib/Makefile.inc b/src/arch/i386/lib/Makefile.inc index 41f8fdc581..de61f9e42c 100644 --- a/src/arch/i386/lib/Makefile.inc +++ b/src/arch/i386/lib/Makefile.inc @@ -5,6 +5,7 @@ obj-y += pci_ops_conf2.o obj-y += pci_ops_mmconf.o obj-y += pci_ops_auto.o obj-y += exception.o +obj-$(CONFIG_IOAPIC) += ioapic.o initobj-y += printk_init.o initobj-y += cbfs_and_run.o |