diff options
author | Simon Glass <sjg@chromium.org> | 2018-12-28 14:03:07 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-09 07:13:31 -0500 |
commit | 1ce689d95085708cc9dc9a9eefa665fa276a4b6c (patch) | |
tree | 16222ee37518a9febe10c5d5a36625bdfe9b41d5 /Makefile | |
parent | 358fd21fe7b6e6481a9f5436f2d1a2e4dd754082 (diff) | |
download | u-boot-1ce689d95085708cc9dc9a9eefa665fa276a4b6c.tar.gz u-boot-1ce689d95085708cc9dc9a9eefa665fa276a4b6c.tar.bz2 u-boot-1ce689d95085708cc9dc9a9eefa665fa276a4b6c.zip |
dm: pci: MIGRATION: Add migration plan for PCI
Add a migration plan for PCI which is an important subsystem in U-Boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -948,6 +948,16 @@ ifneq ($(CONFIG_DM_SCSI),y) @echo >&2 "====================================================" endif 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.txt for more info." + @echo >&2 "====================================================" +endif +endif ifeq ($(CONFIG_OF_EMBED),y) @echo >&2 "===================== WARNING ======================" @echo >&2 "CONFIG_OF_EMBED is enabled. This option should only" |