diff options
| author | Robert Marko | 2025-04-17 11:12:17 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-04-18 11:22:12 +0000 |
| commit | e6c635197664a44aabcbc31e5fe93ec92780699e (patch) | |
| tree | bcbecb9b2b17d82b394e9d368d1039c6b9b31805 | |
| parent | a06ed856bb4e125683f82b6f8ea1938e7394b16c (diff) | |
| download | openwrt-e6c635197664a44aabcbc31e5fe93ec92780699e.tar.gz | |
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 <robimarko@gmail.com>
| -rw-r--r-- | package/boot/uboot-tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/boot/uboot-tools/Makefile b/package/boot/uboot-tools/Makefile index 481fe77602..9fa680c97c 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 |