mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 04:03:58 +08:00
22d5c67c5b
first step: make the VISWS subarch boot on a regular PC. We take various shortcuts for that. We copy the generic arch setup file over into the VISWS setup file. This is the only step that is not expected to boot on a real VISWS. Signed-off-by: Ingo Molnar <mingo@elte.hu>
20 lines
564 B
Makefile
20 lines
564 B
Makefile
obj-y := i386.o init.o
|
|
|
|
obj-$(CONFIG_PCI_BIOS) += pcbios.o
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_$(BITS).o direct.o mmconfig-shared.o
|
|
obj-$(CONFIG_PCI_DIRECT) += direct.o
|
|
obj-$(CONFIG_PCI_OLPC) += olpc.o
|
|
|
|
pci-y := fixup.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 irq.o fixup.o
|
|
|
|
pci-$(CONFIG_X86_NUMAQ) += numa.o
|
|
|
|
obj-y += $(pci-y) common.o early.o
|
|
obj-y += amd_bus.o
|