From b32bb886f30ef7e0e5e1af29e90a63c5acfb6937 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Thu, 17 Oct 2013 11:54:52 +0000 Subject: imx6: fix file names when building images Signed-off-by: Luka Perkov git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38434 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/imx6/image/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'target/linux') diff --git a/target/linux/imx6/image/Makefile b/target/linux/imx6/image/Makefile index aad15271a0..a0772727d2 100644 --- a/target/linux/imx6/image/Makefile +++ b/target/linux/imx6/image/Makefile @@ -34,7 +34,7 @@ endef # board-specific sysupgrade image define BuildFirmware/Generic - dd if=$(BIN_DIR)/openwrt-$(1)-uImage.itb of=$(KDIR)/uImage.pad bs=64k conv=sync; \ + dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage.itb of=$(KDIR)/uImage.pad bs=64k conv=sync; \ dd if=$(KDIR)/root.$(2) of=$(KDIR)/root.$(2).pad bs=128k conv=sync; \ sh $(TOPDIR)/scripts/combined-image.sh \ $(KDIR)/uImage.pad \ @@ -52,10 +52,10 @@ endef # rootfs and board-specific combined kernel+rootfs for convenience define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.$(1)) - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=128k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync; \ $(foreach board,$(BOARDS), ( \ - dd if=$(BIN_DIR)/openwrt-$(board)-uImage.itb bs=2048k conv=sync; \ + dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(board)-uImage.itb bs=2048k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ ) > $(BIN_DIR)/$(IMG_PREFIX)-$(board)-$(1).bin ) -- cgit v1.2.3