[openwrt/openwrt] tools/mkimage: copy mkenvimage to bin directory

LEDE Commits lede-commits at lists.infradead.org
Tue Feb 13 01:02:40 PST 2018


blogic pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/063fa4cfa28a6bdf502cebed3f984fc738bfad25

commit 063fa4cfa28a6bdf502cebed3f984fc738bfad25
Author: Evgeniy Didin <Evgeniy.Didin at synopsys.com>
AuthorDate: Mon Feb 12 19:42:01 2018 +0300

    tools/mkimage: copy mkenvimage to bin directory
    
    For some boards u-boot binary environment file is required,
    which is generated by mkenvimage utility. But in OpenWrt there
    is no separate support for mkenvimage, which is a part of u-boot tools.
    mkenvimage gets built in u-boot/tools as well as mkimage anyways.
    
    So lets just copy mkenvimage to the $(STAGING_DIR_HOST)/bin/ directory.
    
    Signed-off-by: Evgeniy Didin <Evgeniy.Didin at synopsys.com>
    CC: Alexey Brodkin <abrodkin at synopsys.com>
    CC: Hauke Mehrtens <hauke at hauke-m.de>
    CC: John Crispin <john at phrozen.org>
---
 tools/mkimage/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile
index bfe6099..00f85ae 100644
--- a/tools/mkimage/Makefile
+++ b/tools/mkimage/Makefile
@@ -37,10 +37,12 @@ endef
 
 define Host/Install
 	$(CP) $(HOST_BUILD_DIR)/tools/mkimage $(STAGING_DIR_HOST)/bin/
+	$(CP) $(HOST_BUILD_DIR)/tools/mkenvimage $(STAGING_DIR_HOST)/bin/
 endef
 
 define Host/Clean
 	rm -f $(STAGING_DIR_HOST)/bin/mkimage
+	rm -f $(STAGING_DIR_HOST)/bin/mkenvimage
 endef
 
 $(eval $(call HostBuild))



More information about the lede-commits mailing list