summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>2023-01-03 18:36:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-06 17:33:47 +0000
commit85bcf0fefa396fc2e19be13a40699df8007c7ed0 (patch)
treeece958cb7fd1142c20f79663af2dcd262b628752 /documentation
parent6798b28dc19f579c585416307a2cda0e05d49e3a (diff)
downloadpoky-85bcf0fefa396fc2e19be13a40699df8007c7ed0.tar.gz
docs: migration-4.0: specify variable name change for kernel inclusion in image recipe
Since commit f6d963fa6d0e ("kernel: make kernel-base recommend kernel-image, not depend"), present in Kirkstone 4.0, one should set RRECOMMENDS and not RDEPENDS to avoid including the kernel in the image, so let's update the documentation to reflect that. Reported-by: Konstantin Kletschke <konstantin.kletschke@inside-m2m.de> Cc: Quentin Schulz <foss+yocto@0leil.net> (From yocto-docs rev: 30f5f9ece260fd600f0c0fa32fc2f1fc61cf7d1b) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/migration-guides/migration-4.0.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/documentation/migration-guides/migration-4.0.rst b/documentation/migration-guides/migration-4.0.rst
index 02d3c3e2bd..ab82280f5e 100644
--- a/documentation/migration-guides/migration-4.0.rst
+++ b/documentation/migration-guides/migration-4.0.rst
@@ -265,3 +265,6 @@ Miscellaneous changes
265 when parsing recipes. Any code depending on the previous behaviour will no longer 265 when parsing recipes. Any code depending on the previous behaviour will no longer
266 work - change any such code to explicitly use appropriate path variables instead. 266 work - change any such code to explicitly use appropriate path variables instead.
267 267
268- In order to exclude the kernel image from the image rootfs,
269 :term:`RRECOMMENDS`\ ``:${KERNEL_PACKAGE_NAME}-base`` should be set instead of
270 :term:`RDEPENDS`\ ``:${KERNEL_PACKAGE_NAME}-base``.