Commit a3a9e99e authored by Paul Mackerras's avatar Paul Mackerras

powerpc: Fix building in the old arch's boot directory for now

Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 400d2212
...@@ -152,13 +152,13 @@ CPPFLAGS_vmlinux.lds := -Upowerpc ...@@ -152,13 +152,13 @@ CPPFLAGS_vmlinux.lds := -Upowerpc
# All the instructions talk about "make bzImage". # All the instructions talk about "make bzImage".
bzImage: zImage bzImage: zImage
boot := arch/$(ARCH)/boot boot := arch/$(OLDARCH)/boot
$(BOOT_TARGETS): vmlinux $(BOOT_TARGETS): vmlinux
$(Q)$(MAKE) $(build)=$(boot) $@ $(Q)$(MAKE) ARCH=$(OLDARCH) $(build)=$(boot) $@
uImage: vmlinux uImage: vmlinux
$(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@ $(Q)$(MAKE) ARCH=$(OLDARCH) $(build)=$(boot)/images $(boot)/images/$@
define archhelp define archhelp
@echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)' @echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)'
...@@ -171,7 +171,7 @@ define archhelp ...@@ -171,7 +171,7 @@ define archhelp
endef endef
archclean: archclean:
$(Q)$(MAKE) $(clean)=arch/ppc/boot $(Q)$(MAKE) $(clean)=$(boot)
# Temporary hack until we have migrated to asm-powerpc # Temporary hack until we have migrated to asm-powerpc
$(Q)rm -rf arch/$(ARCH)/include $(Q)rm -rf arch/$(ARCH)/include
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment