aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Krottmayer <krjdev@gmail.com>2022-03-01 04:49:50 +0100
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-03-20 11:03:05 +0100
commit1840ce5f3860673fd935c458148e9ffd84f62a61 (patch)
treeaef0bad8e789cf2a2254f63e6be718ce458af353 /Makefile
parent9776c4e9d00ac49d6388ffe9e084ff03b37ae479 (diff)
downloadu-boot-1840ce5f3860673fd935c458148e9ffd84f62a61.zip
u-boot-1840ce5f3860673fd935c458148e9ffd84f62a61.tar.gz
u-boot-1840ce5f3860673fd935c458148e9ffd84f62a61.tar.bz2
Makefile: Fix doc path in warning message
Fix documentation path in warning message about deprecated device driver. Signed-off-by: Johannes Krottmayer <krjdev@gmail.com> Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e2441e..14fd286 100644
--- a/Makefile
+++ b/Makefile
@@ -1080,7 +1080,7 @@ define deprecated
echo >&2 "for $(2)). Please update the board to use"; \
echo >&2 "$(firstword $(1)) before the $(3) release. Failure to"; \
echo >&2 "update by the deadline may result in board removal."; \
- echo >&2 "See doc/driver-model/migration.rst for more info."; \
+ echo >&2 "See doc/develop/driver-model/migration.rst for more info."; \
echo >&2 "===================================================="; \
fi; fi
@@ -1121,7 +1121,7 @@ ifneq ($(CONFIG_DM),y)
@echo >&2 "This board does not use CONFIG_DM. CONFIG_DM will be"
@echo >&2 "compulsory starting with the v2020.01 release."
@echo >&2 "Failure to update may result in board removal."
- @echo >&2 "See doc/driver-model/migration.rst for more info."
+ @echo >&2 "See doc/develop/driver-model/migration.rst for more info."
@echo >&2 "===================================================="
endif
$(call deprecated,CONFIG_WDT,DM watchdog,v2019.10,\