[ARM] Add KBUILD_IMAGE target support

Add support for KBUILD_IMAGE on ARM. This takes the usual target
specifiers (zImage/Image/etc) in the same way that powerpc does
(iow, without the arch/arm/boot prefix).

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Russell King and committed by Russell King 51342d71 9468613b

+4 -2
+4 -2
arch/arm/Makefile
··· 174 175 # Default target when executing plain make 176 ifeq ($(CONFIG_XIP_KERNEL),y) 177 - all: xipImage 178 else 179 - all: zImage 180 endif 181 182 boot := arch/arm/boot 183
··· 174 175 # Default target when executing plain make 176 ifeq ($(CONFIG_XIP_KERNEL),y) 177 + KBUILD_IMAGE := xipImage 178 else 179 + KBUILD_IMAGE := zImage 180 endif 181 + 182 + all: $(KBUILD_IMAGE) 183 184 boot := arch/arm/boot 185