[U-Boot] [PATCH 2/8] Makefile: Trigger a Warning if BROKEN defined
Jagan Teki
jagan at amarulasolutions.com
Sun Apr 28 20:47:55 UTC 2019
If configured target has broken config enabled, trigger a warning
saying that the desired .config has broken configuration.
Cc: Heinrich Schuchardt <xypron.glpk at gmx.de>
Signed-off-by: Jagan Teki <jagan at amarulasolutions.com>
---
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index 66a09ac900..02c9a73d33 100644
--- a/Makefile
+++ b/Makefile
@@ -918,6 +918,9 @@ cmd_cfgcheck = $(srctree)/scripts/check-config.sh $2 \
$(srctree)/scripts/config_whitelist.txt $(srctree)
all: $(ALL-y)
+ifeq ($(CONFIG_BROKEN),y)
+ $(warning "You have broken configuration in your .config! Please check your configuration.")
+endif # broken
ifeq ($(CONFIG_DM_I2C_COMPAT)$(CONFIG_SANDBOX),y)
@echo >&2 "===================== WARNING ======================"
@echo >&2 "This board uses CONFIG_DM_I2C_COMPAT. Please remove"
--
2.18.0.321.gffc6fa0e3
More information about the U-Boot
mailing list