diff options
author | Quentin Schulz <quentin.schulz@theobroma-systems.com> | 2023-01-03 18:36:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-06 17:39:09 +0000 |
commit | 51addfc756b02cc2b3244dc4be18abc163bb019d (patch) | |
tree | 22db1ebc1021aad4660b7d7cdd92d0e4e6827bb6 /documentation | |
parent | da0241272c3785806b68801a9adb5a7abb3d4c7b (diff) | |
download | poky-51addfc756b02cc2b3244dc4be18abc163bb019d.tar.gz |
docs: migration-guides: 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: 0b19f95307f071861ecc40f000e814f3ecd0342a)
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.rst | 3 |
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 e11809b49c..dd840f2bb3 100644 --- a/documentation/migration-guides/migration-4.0.rst +++ b/documentation/migration-guides/migration-4.0.rst | |||
@@ -267,3 +267,6 @@ Miscellaneous changes | |||
267 | when parsing recipes. Any code depending on the previous behaviour will no longer | 267 | when parsing recipes. Any code depending on the previous behaviour will no longer |
268 | work - change any such code to explicitly use appropriate path variables instead. | 268 | work - change any such code to explicitly use appropriate path variables instead. |
269 | 269 | ||
270 | - In order to exclude the kernel image from the image rootfs, | ||
271 | :term:`RRECOMMENDS`\ ``:${KERNEL_PACKAGE_NAME}-base`` should be set instead of | ||
272 | :term:`RDEPENDS`\ ``:${KERNEL_PACKAGE_NAME}-base``. | ||