63397dd0be
Now that we're moving all of the device tree generation from an external pre-execution generated blob to runtime generation using libfdt, we absolutely must have libfdt around. This requirement was there before already, as the only way to not require libfdt with e500 was to not use -kernel, which was the only way to boot the mpc8544ds machine. This patch only manifests said requirement in the build system. Signed-off-by: Alexander Graf <agraf@suse.de>
29 lines
838 B
Makefile
29 lines
838 B
Makefile
# shared objects
|
|
obj-y = ppc.o ppc_booke.o
|
|
# PREP target
|
|
obj-y += mc146818rtc.o
|
|
obj-y += ppc_prep.o
|
|
# OldWorld PowerMac
|
|
obj-y += ppc_oldworld.o
|
|
# NewWorld PowerMac
|
|
obj-y += ppc_newworld.o
|
|
# IBM pSeries (sPAPR)
|
|
obj-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
|
|
obj-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
|
|
obj-$(CONFIG_PSERIES) += spapr_pci.o pci-hotplug.o
|
|
# PowerPC 4xx boards
|
|
obj-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
|
|
obj-y += ppc440_bamboo.o
|
|
# PowerPC E500 boards
|
|
obj-$(CONFIG_FDT) += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
|
|
# PowerPC 440 Xilinx ML507 reference board.
|
|
obj-y += virtex_ml507.o
|
|
# PowerPC OpenPIC
|
|
obj-y += openpic.o
|
|
obj-$(CONFIG_FDT) += ../device_tree.o
|
|
|
|
# Xilinx PPC peripherals
|
|
obj-y += xilinx_ethlite.o
|
|
|
|
obj-y := $(addprefix ../,$(obj-y))
|