d7f3945420
ARCH=powerpc couldn't boot from BootX as it uses a "different" way of getting in the kernel. This patch adds the necessary trampolines, creating a flattened device-tree from the tree passed from MacOS, and initializing the btext engine early for really-early debugging. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
14 lines
493 B
Makefile
14 lines
493 B
Makefile
CFLAGS_bootx_init.o += -fPIC
|
|
|
|
obj-y += pic.o setup.o time.o feature.o pci.o \
|
|
sleep.o low_i2c.o cache.o
|
|
obj-$(CONFIG_PMAC_BACKLIGHT) += backlight.o
|
|
obj-$(CONFIG_CPU_FREQ_PMAC) += cpufreq_32.o
|
|
obj-$(CONFIG_CPU_FREQ_PMAC64) += cpufreq_64.o
|
|
obj-$(CONFIG_NVRAM) += nvram.o
|
|
# ppc64 pmac doesn't define CONFIG_NVRAM but needs nvram stuff
|
|
obj-$(CONFIG_PPC64) += nvram.o
|
|
obj-$(CONFIG_PPC32) += bootx_init.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_PPC_MERGE) += udbg_scc.o udbg_adb.o
|