From patchwork Wed Dec 19 12:47:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: package/uboot-tools: Add mkenvimage for host. X-Patchwork-Submitter: =?utf-8?q?Arnaud_R=C3=A9billout?= X-Patchwork-Id: 207340 Message-Id: <50D1B74F.805@syscom.ch> To: buildroot@busybox.net Date: Wed, 19 Dec 2012 13:47:11 +0100 From: =?ISO-8859-1?Q?Arnaud_R=E9billout?= List-Id: Discussion and development of buildroot Hello there, I need to use mkenvimage. And it seems that the easiest way is to automatically install it in the HOST_UBOOT_TOOLS_INSTALL_CMDS target. The tool mkenvimage appeared v2011.12 of uboot, so it's present in all the versions that buildroot supports. The patch is a simple line, if anyone is interested. Regards Signed-off-by: Arnaud Rébillout --- $(eval $(generic-package)) --- diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk index 7628b77..57c59bb 100644 --- a/package/uboot-tools/uboot-tools.mk +++ b/package/uboot-tools/uboot-tools.mk @@ -49,6 +49,7 @@ endef define HOST_UBOOT_TOOLS_INSTALL_CMDS $(INSTALL) -m 0755 -D $(@D)/tools/mkimage $(HOST_DIR)/usr/bin/mkimage + $(INSTALL) -m 0755 -D $(@D)/tools/mkenvimage $(HOST_DIR)/usr/bin/mkenvimage endef