6153df7b2f
Delete the ability to build an ACPI kernel that does not include PCI support. When such a machine is created and it requires a tuned kernel, send a patch. http://bugzilla.kernel.org/show_bug.cgi?id=1364 Signed-off-by: Len Brown <len.brown@intel.com>
15 lines
329 B
Makefile
15 lines
329 B
Makefile
obj-y := i386.o
|
|
|
|
obj-$(CONFIG_PCI_BIOS) += pcbios.o
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig.o
|
|
obj-$(CONFIG_PCI_DIRECT) += direct.o
|
|
|
|
pci-y := fixup.o
|
|
pci-$(CONFIG_ACPI) += acpi.o
|
|
pci-y += legacy.o irq.o
|
|
|
|
pci-$(CONFIG_X86_VISWS) := visws.o fixup.o
|
|
pci-$(CONFIG_X86_NUMAQ) := numa.o irq.o
|
|
|
|
obj-y += $(pci-y) common.o
|