public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] Makefile: Sort u-boot-initial-env output
@ 2022-02-23  9:33 Christoph Niedermaier
  2022-02-23 13:12 ` Stefano Babic
  2022-02-23 22:59 ` Simon Glass
  0 siblings, 2 replies; 6+ messages in thread
From: Christoph Niedermaier @ 2022-02-23  9:33 UTC (permalink / raw)
  To: u-boot; +Cc: Christoph Niedermaier, Stefano Babic, Simon Glass,
	Marek Behún

For a better overview and better comparison sort the initial
environment as the get_default_env.sh script does. We need
to preserve the order of equal variable names. So only sort
by the variable name, and disable the last-resort comparison.
Also remove blank lines before sorting.

Signed-off-by: Christoph Niedermaier <cniedermaier@dh-electronics.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Marek Behún <marek.behun@nic.cz>
To: u-boot@lists.denx.de
---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 4b152249ca..67ed4edc1a 100644
--- a/Makefile
+++ b/Makefile
@@ -2439,7 +2439,8 @@ endif
 
 quiet_cmd_genenv = GENENV  $@
 cmd_genenv = $(OBJCOPY) --dump-section .rodata.default_environment=$@ env/common.o; \
-	sed --in-place -e 's/\x00/\x0A/g' $@
+	sed --in-place -e 's/\x00/\x0A/g' $@; sed --in-place -e '/^\s*$$/d' $@; \
+	sort --field-separator== -k1,1 --stable $@ -o $@
 
 u-boot-initial-env: u-boot.bin
 	$(call if_changed,genenv)
-- 
2.11.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-25 22:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-23  9:33 [PATCH] Makefile: Sort u-boot-initial-env output Christoph Niedermaier
2022-02-23 13:12 ` Stefano Babic
2022-02-23 22:59 ` Simon Glass
2022-02-24  9:59   ` Christoph Niedermaier
2022-02-24 23:54     ` Simon Glass
2022-02-25 22:27       ` Christoph Niedermaier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox