aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-02-09 23:00:12 -0500
committerTom Rini <trini@konsulko.com>2021-02-09 23:00:12 -0500
commitb5ea0b412e5c4db35bcbe649169423ccc5268091 (patch)
tree164a7550073c01b843d9b3799133a4f6159f2b55
parent4fa91885a6467f55f23d99a419e10ad80895579e (diff)
downloadu-boot-WIP/make-DM_PCI-fatal.zip
u-boot-WIP/make-DM_PCI-fatal.tar.gz
u-boot-WIP/make-DM_PCI-fatal.tar.bz2
TEST: Make DM_PCI fatalWIP/make-DM_PCI-fatal
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a71b66c..09882aa 100644
--- a/Makefile
+++ b/Makefile
@@ -1067,11 +1067,10 @@ endif
ifeq ($(CONFIG_PCI),y)
ifneq ($(CONFIG_DM_PCI),y)
@echo >&2 "===================== WARNING ======================"
- @echo >&2 "This board does not use CONFIG_DM_PCI Please update"
- @echo >&2 "the board to use CONFIG_DM_PCI before the v2019.07 release."
- @echo >&2 "Failure to update by the deadline may result in board removal."
- @echo >&2 "See doc/driver-model/migration.rst for more info."
+ @echo >&2 "This board does not use CONFIG_DM_PCI and the migration"
+ @echo >&2 "deadline was the v2019.07 release."
@echo >&2 "===================================================="
+ @exit 1
endif
endif
ifneq ($(CONFIG_LCD)$(CONFIG_VIDEO),)