From: Jo-Philipp Wich Date: Thu, 28 May 2015 13:25:21 +0000 (+0000) Subject: at91: fix imagebuilder X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=939fca84540a7d2580b6e475f364bb9bd1230f85;p=15.05%2Fopenwrt.git at91: fix imagebuilder Signed-off-by: Jo-Philipp Wich git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45806 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index 49e2bee5c1..4e472f23db 100644 --- a/target/linux/at91/image/Makefile +++ b/target/linux/at91/image/Makefile @@ -24,6 +24,7 @@ define Build/Compile endef define Image/Prepare + cp $(LINUX_DIR)/arch/arm/boot/Image $(KDIR)/Image cp $(LINUX_DIR)/arch/arm/boot/zImage $(KDIR)/zImage endef @@ -89,9 +90,9 @@ endef define Image/BuildKernel mkimage -A arm -T kernel -C none -a 0x20008000 -e 0x20008000 -n linux-2.6 \ - -d $(LINUX_DIR)/arch/arm/boot/Image $(BIN_DIR)/uImage + -d $(KDIR)/Image $(BIN_DIR)/$(IMG_PREFIX)-uImage if [ $(CONFIG_FLEXIBITY_ROOT) ]; then \ - $(INSTALL_BIN) $(BIN_DIR)/uImage $(TARGET_DIR)/uImage ; \ + $(INSTALL_BIN) $(BIN_DIR)/$(IMG_PREFIX)-uImage $(TARGET_DIR)/uImage ; \ fi $(call Image/Build/Kernel/$(PROFILE)) endef