mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
d49c428840
... so it could fall back to normal numa and we'd reduce the impact of the NUMAQ subarch. NUMAQ depends on GENERICARCH also decouple genericarch numa from acpi. also make it fall back to bigsmp if apicid > 8. Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
26 lines
745 B
Plaintext
26 lines
745 B
Plaintext
obj-y := i386.o init.o
|
|
|
|
obj-$(CONFIG_PCI_BIOS) += pcbios.o
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_32.o direct.o mmconfig-shared.o
|
|
obj-$(CONFIG_PCI_DIRECT) += direct.o
|
|
obj-$(CONFIG_PCI_OLPC) += olpc.o
|
|
|
|
pci-y := fixup.o
|
|
|
|
# Do not change the ordering here. There is a nasty init function
|
|
# ordering dependency which breaks when you move acpi.o below
|
|
# legacy/irq.o
|
|
pci-$(CONFIG_ACPI) += acpi.o
|
|
pci-y += legacy.o irq.o
|
|
|
|
# Careful: VISWS overrule the pci-y above. The colons are
|
|
# therefor correct. This needs a proper fix by distangling the code.
|
|
pci-$(CONFIG_X86_VISWS) := visws.o fixup.o
|
|
|
|
pci-$(CONFIG_X86_NUMAQ) += numa.o
|
|
|
|
# Necessary for NUMAQ as well
|
|
pci-$(CONFIG_NUMA) += mp_bus_to_node.o
|
|
|
|
obj-y += $(pci-y) common.o early.o
|