[PATCH 04/10] MAKEALL: Do not print sizes

Sascha Hauer s.hauer at pengutronix.de
Tue May 2 00:39:19 PDT 2023


The size of the barebox proper binary is not very useful to print,
the binary will be compressed which decreases its size and the PBL
will be added to it which then adds to the resulting size again.

Printing the sizes will only show what we all know already: Software
gets bigger over time when new features are added and more corner
cases are handled. Just drop printing of the sizes.

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 MAKEALL | 1 -
 1 file changed, 1 deletion(-)

diff --git a/MAKEALL b/MAKEALL
index 5b1fb3ddd6..c1048a21e2 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -138,7 +138,6 @@ do_build_target() {
 
 		if [ "$compile_result" = "0" ]; then
 			printf "OK     \n" | tee -a "${log_report}"
-			${cross_compile}size ${BUILDDIR}/barebox | tee -a "${log_report}"
 		else
 			printf "FAILED \n" | tee -a "${log_report}"
 			ret=1
-- 
2.39.2




More information about the barebox mailing list