summaryrefslogtreecommitdiff
path: root/include/image.mk
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-07-19 17:12:45 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-07-19 17:12:45 +0000
commitc39b64d78fe34f434fdb70ccc4f639c53f5a6aa4 (patch)
tree82c0efb4985dcf559ee5349a07e84df3033aaf5a /include/image.mk
parentadba04e53f934fda623c7c1ef180653c7d907b2b (diff)
downloadmtk-20170518-c39b64d78fe34f434fdb70ccc4f639c53f5a6aa4.zip
mtk-20170518-c39b64d78fe34f434fdb70ccc4f639c53f5a6aa4.tar.gz
mtk-20170518-c39b64d78fe34f434fdb70ccc4f639c53f5a6aa4.tar.bz2
image: fix initramfs image name
Preserve order of components in initramfs image filename when doing copy from $(KDIR) to $(BIN_DIR). Patchwork: http://patchwork.openwrt.org/patch/3811/ Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 37452
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk
index 7d63a18..80be17a 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -69,7 +69,7 @@ endef
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
define Image/BuildKernel/Initramfs
- cp $(KDIR)/vmlinux-initramfs.elf $(BIN_DIR)/$(IMG_PREFIX)-initramfs-vmlinux.elf
+ cp $(KDIR)/vmlinux-initramfs.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux-initramfs.elf
$(call Image/Build/Initramfs)
endef
else