From: Robert Marko Date: Thu, 17 Apr 2025 11:12:17 +0000 (+0200) Subject: uboot-tools: Honor the global verbose flag X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6c635197664a44aabcbc31e5fe93ec92780699e;p=thirdparty%2Fopenwrt.git uboot-tools: Honor the global verbose flag Look for OPENWRT_VERBOSE and pass it down to the U-Boot so we actually get verbose build info when needed for debugging. Link: https://github.com/openwrt/openwrt/pull/18515 Signed-off-by: Robert Marko --- diff --git a/package/boot/uboot-tools/Makefile b/package/boot/uboot-tools/Makefile index 481fe776026..9fa680c97c8 100644 --- a/package/boot/uboot-tools/Makefile +++ b/package/boot/uboot-tools/Makefile @@ -80,7 +80,8 @@ MAKE_FLAGS += \ ARCH="sandbox" \ TARGET_CFLAGS="$(TARGET_CFLAGS)" \ TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \ - NO_PYTHON=1 + NO_PYTHON=1 \ + V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) define Build/Compile