|
@@ -129,7 +129,9 @@ image-$(CONFIG_PPC_CELLEB) += zImage.pseries
|
|
|
image-$(CONFIG_PPC_CHRP) += zImage.chrp
|
|
|
image-$(CONFIG_PPC_EFIKA) += zImage.chrp
|
|
|
image-$(CONFIG_PPC_PMAC) += zImage.pmac
|
|
|
-image-$(CONFIG_DEFAULT_UIMAGE) += uImage cuImage
|
|
|
+image-$(CONFIG_PPC_83xx) += cuImage.83xx
|
|
|
+image-$(CONFIG_PPC_85xx) += cuImage.85xx
|
|
|
+image-$(CONFIG_DEFAULT_UIMAGE) += uImage
|
|
|
|
|
|
# For 32-bit powermacs, build the COFF and miboot images
|
|
|
# as well as the ELF images.
|
|
@@ -162,15 +164,11 @@ $(obj)/zImage.initrd.ps3: vmlinux
|
|
|
$(obj)/uImage: vmlinux $(wrapperbits)
|
|
|
$(call if_changed,wrap,uboot)
|
|
|
|
|
|
-cuboot-plat-$(CONFIG_83xx) += 83xx
|
|
|
-cuboot-plat-$(CONFIG_85xx) += 85xx
|
|
|
-cuboot-plat-y += unknown-platform
|
|
|
-
|
|
|
dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\
|
|
|
,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE)
|
|
|
|
|
|
-$(obj)/cuImage: vmlinux $(wrapperbits)
|
|
|
- $(call if_changed,wrap,cuboot-$(word 1,$(cuboot-plat-y)),$(dts))
|
|
|
+$(obj)/cuImage.%: vmlinux $(wrapperbits)
|
|
|
+ $(call if_changed,wrap,cuboot-$*,$(dts))
|
|
|
|
|
|
$(obj)/zImage: $(addprefix $(obj)/, $(image-y))
|
|
|
@rm -f $@; ln $< $@
|
|
@@ -181,8 +179,7 @@ install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
|
|
|
sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
|
|
|
|
|
|
# anything not in $(targets)
|
|
|
-clean-files += $(image-) $(initrd-) zImage zImage.initrd \
|
|
|
- cuImage.elf cuImage.bin.gz
|
|
|
+clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.*
|
|
|
|
|
|
# clean up files cached by wrapper
|
|
|
clean-kernel := vmlinux.strip vmlinux.bin
|