diff options
Diffstat (limited to 'arch/i386/kernel/Makefile')
-rw-r--r-- | arch/i386/kernel/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile index 875f52d5a..29afabd7a 100644 --- a/arch/i386/kernel/Makefile +++ b/arch/i386/kernel/Makefile @@ -19,7 +19,12 @@ OX_OBJS := i386_ksyms.o MX_OBJS := ifdef CONFIG_PCI -O_OBJS += bios32.o +O_OBJS += pci-i386.o +ifdef CONFIG_VISWS +O_OBJS += pci-visws.o +else +O_OBJS += pci-pc.o +endif endif ifdef CONFIG_MCA @@ -43,7 +48,7 @@ else endif ifdef CONFIG_SMP -O_OBJS += smp.o trampoline.o +O_OBJS += smp.o smpboot.o trampoline.o endif ifdef CONFIG_X86_IO_APIC |