diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2015-04-13 20:06:47 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2015-04-13 20:06:47 +0000 |
commit | c08644341187fcc4c599de0caf2686b7b022ea85 (patch) | |
tree | 8db0fe4de6cc2c24ec870a7f69f6d0ff15579c02 | |
parent | 402c9a689ecc7e6d32913ae7161ceb038a27e848 (diff) | |
download | upstream-c08644341187fcc4c599de0caf2686b7b022ea85.tar.gz upstream-c08644341187fcc4c599de0caf2686b7b022ea85.tar.bz2 upstream-c08644341187fcc4c599de0caf2686b7b022ea85.zip |
mvebu: copy the initramfs files to the bin dir
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45421 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/mvebu/image/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index 0d75e30eda..e6e7529171 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -14,8 +14,6 @@ JFFS2_BLOCKSIZE = 128k KDIR_TMP:=$(KDIR)/tmp -UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage - define Image/Build/DTB cp $(KDIR)/zImage$(2) $(KDIR)/zImage$(2)-$(1); cat $(DTS_DIR)/$(1).dtb >> $(KDIR)/zImage$(2)-$(1); @@ -44,6 +42,7 @@ define NANDProfile define Image/Build/Profile/$(1)/Initramfs $(call Image/Build/DTB,$(2),-initramfs) + cp $(KDIR)/uImage-initramfs-$(2) $(BIN_DIR)/$(IMG_PREFIX)-$(2)-initramfs endef define Image/Build/Profile/$(1)/squashfs |