public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] Makefile: use shell to calculate map_size
@ 2024-03-02 13:17 Leon M. Busch-George
  2024-03-02 21:13 ` Dragan Simic
  2024-03-04 20:38 ` [PATCH v2] " Leon M. Busch-George
  0 siblings, 2 replies; 8+ messages in thread
From: Leon M. Busch-George @ 2024-03-02 13:17 UTC (permalink / raw)
  To: u-boot

From: "Leon M. Busch-George" <leon@georgemail.eu>

The error message "bc: command not found" is easily missed since the
build continues.
bc is not a part of coreutils or base-devel. POSIX sh can also do the
calculation.

Signed-off-by: Leon M. Busch-George <leon@georgemail.eu>
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 7a3209bd9e..41dc4baad2 100644
--- a/Makefile
+++ b/Makefile
@@ -1275,9 +1275,9 @@ OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \
 binary_size_check: u-boot-nodtb.bin FORCE
 	@file_size=$(shell wc -c u-boot-nodtb.bin | awk '{print $$1}') ; \
 	map_size=$(shell cat u-boot.map | \
-		awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "ibase=16; " toupper(end) " - " toupper(start)}' \
+		awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "echo $$((0x" toupper(end) " - 0x" toupper(start) "))"}' \
 		| sed 's/0X//g' \
-		| bc); \
+		| sh); \
 	if [ "" != "$$map_size" ]; then \
 		if test $$map_size -ne $$file_size; then \
 			echo "u-boot.map shows a binary size of $$map_size" >&2 ; \
-- 
2.44.0


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

end of thread, other threads:[~2024-03-10 10:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-02 13:17 [PATCH] Makefile: use shell to calculate map_size Leon M. Busch-George
2024-03-02 21:13 ` Dragan Simic
     [not found]   ` <20240304154007.67df1822@couch-potassium>
2024-03-04 15:57     ` Leon Busch-George
2024-03-04 20:38 ` [PATCH v2] " Leon M. Busch-George
2024-03-05 16:40   ` Leon Busch-George
2024-03-05 16:46   ` [PATCH v3] " Leon M. Busch-George
     [not found]     ` <343281d5cf78e8c473e40f58361e01e1@manjaro.org>
2024-03-10 10:33       ` Dragan Simic
     [not found]   ` <b594973ddce475d2a2baead6f4028134@manjaro.org>
2024-03-10 10:12     ` [PATCH v2] " Dragan Simic

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