From 474aa963ff5248def83842f78e57634b64bb36ab Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Mon, 9 Oct 2023 12:17:59 +0200 Subject: [PATCH] doc: migration-guide: inform about device dependencies changes Device dependencies are now optional, before they were always built. Signed-off-by: Gerard Marull-Paretas --- doc/releases/migration-guide-3.5.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/releases/migration-guide-3.5.rst b/doc/releases/migration-guide-3.5.rst index 67b525e78e84..c49a64b037c5 100644 --- a/doc/releases/migration-guide-3.5.rst +++ b/doc/releases/migration-guide-3.5.rst @@ -230,6 +230,11 @@ Required changes * ARM SoC initialization routines no longer need to call `NMI_INIT()`. The macro call has been removed as it was not doing anything useful. +* Device dependencies (incorrectly referred as "device handles" in some areas) + are now an optional feature enabled by :kconfig:option:`CONFIG_DEVICE_DEPS`. + This means that an extra linker stage is no longer necessary if this option is + not enabled. + Recommended Changes *******************