From: Jo-Philipp Wich Date: Wed, 27 May 2015 14:57:38 +0000 (+0000) Subject: arm64: use common image prefix X-Git-Url: https://git.archive.openwrt.org/?p=15.05%2Fopenwrt.git;a=commitdiff_plain;h=a728419e466765931ad9ee225ad08999e6ec8a76 arm64: use common image prefix Signed-off-by: Jo-Philipp Wich git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45778 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/arm64/image/Makefile b/target/linux/arm64/image/Makefile index 23c26ceb4d..cc04b183fc 100644 --- a/target/linux/arm64/image/Makefile +++ b/target/linux/arm64/image/Makefile @@ -19,14 +19,14 @@ define Build/Clean endef define Image/Build/QemuVirt - $(CP) $(KDIR)/Image $(BIN_DIR)/openwrt-$(BOARD)-qemu-virt.Image + $(CP) $(KDIR)/Image $(BIN_DIR)/$(IMG_PREFIX)-qemu-virt.Image ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) - $(CP) $(KDIR)/Image-initramfs $(BIN_DIR)/openwrt-$(BOARD)-qemu-virt-initramfs.Image + $(CP) $(KDIR)/Image-initramfs $(BIN_DIR)/$(IMG_PREFIX)-qemu-virt-initramfs.Image endif endef define Image/Build/VexpressFoundation - $(CP) $(KDIR)/linux-system.axf $(BIN_DIR)/openwrt-$(BOARD)-vexpress-foundation.axf + $(CP) $(KDIR)/linux-system.axf $(BIN_DIR)/$(IMG_PREFIX)-vexpress-foundation.axf endef define Image/BuildKernel @@ -40,7 +40,7 @@ endef define Image/Build $(call Image/Build/$(1)) - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync endef $(eval $(call BuildImage))