[Buildroot] [PATCH 1/1] package/uboot-tools: fix env image help text

Mirza Kapetanovic mirza.kapetanovic at gmail.com
Fri Jun 25 09:19:00 UTC 2021


BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE is passed almost as is to mkenvimage
which, looking at the help text and source code of the tool, doesn't seem to support
mulitple files as input.

I tried providing multiple files (space separated) and only the last file was included
in the resulting environment image.

Signed-off-by: Mirza Kapetanovic <mirza.kapetanovic at gmail.com>
---
 package/uboot-tools/Config.in.host | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/package/uboot-tools/Config.in.host b/package/uboot-tools/Config.in.host
index 431cc8631d..7e5c5084c0 100644
--- a/package/uboot-tools/Config.in.host
+++ b/package/uboot-tools/Config.in.host
@@ -56,15 +56,13 @@ config BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE
 if BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE
 
 config BR2_PACKAGE_HOST_UBOOT_TOOLS_ENVIMAGE_SOURCE
-	string "Source files for environment"
+	string "Source file for environment"
 	default BR2_TARGET_UBOOT_ENVIMAGE_SOURCE if BR2_TARGET_UBOOT_ENVIMAGE_SOURCE != "" # legacy
 	help
-	  Text files describing the environment. Files should have
+	  Text file describing the environment. File should have
 	  lines of the form var=value, one per line. Blank lines and
 	  lines starting with a # are ignored.
 
-	  Multiple source files are concatenated in the order listed.
-
 	  Leave empty to generate image from compiled-in env if a U-boot
 	  target build is configured (BR2_TARGET_UBOOT)
 
-- 
2.25.1



More information about the buildroot mailing list