public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Avoid using gawk-specific strtonum()
@ 2014-06-18  6:10 Simon Glass
  2014-06-18 10:01 ` Wolfgang Denk
  2014-07-08  1:36 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 8+ messages in thread
From: Simon Glass @ 2014-06-18  6:10 UTC (permalink / raw)
  To: u-boot

We need to subtract two hex numbers. Avoid using strtonum() by doing the
subtraction in bc with a suitable input base.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reported-by: Vasili Galka <vvv444@gmail.com>
---

 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 24d9687..bb2f615 100644
--- a/Makefile
+++ b/Makefile
@@ -788,7 +788,8 @@ OBJCOPYFLAGS_u-boot.bin := -O binary
 binary_size_check: u-boot.bin System.map FORCE
 	@file_size=`stat -c %s u-boot.bin` ; \
 	map_size=$(shell cat System.map | \
-		awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print strtonum("0x" end) - strtonum("0x" start)}'); \
+		awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "ibase=16; " toupper(end) " - " toupper(start)}' \
+		| bc); \
 	if [ "" != "$$map_size" ]; then \
 		if test $$map_size -ne $$file_size; then \
 			echo "System.map shows a binary size of $$map_size" >&2 ; \
-- 
2.0.0.526.g5318336

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

end of thread, other threads:[~2014-07-08  1:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-18  6:10 [U-Boot] [PATCH] Avoid using gawk-specific strtonum() Simon Glass
2014-06-18 10:01 ` Wolfgang Denk
2014-06-18 18:26   ` Tom Rini
2014-06-18 18:38     ` Jeroen Hofstee
2014-06-18 19:14     ` Simon Glass
2014-06-18 19:32       ` Tom Rini
2014-06-18 20:34     ` Måns Rullgård
2014-07-08  1:36 ` [U-Boot] " Tom Rini

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