@@ -59,6 +59,41 @@ Removed classes
The following classes have been removed in this release:
+- ``kernel-fitimage.bbclass``: the class has been replaced by the
+ :ref:`ref-classes-kernel-fit-image` class. The new implementation resolves
+ a long-standing issue with the previous implementation (see
+ `bug #12912 <https://bugzilla.yoctoproject.org/show_bug.cgi?id=12912>`__).
+
+ If you are using the kernel FIT image support, you will need to:
+
+ 1. Make sure to include ``kernel-fit-extra-artifacts`` in your :term:`KERNEL_CLASSES`
+ variable to ensure the required files are exposed to the :term:`DEPLOY_DIR_IMAGE`
+ directory::
+
+ KERNEL_CLASSES += "kernel-fit-extra-artifacts"
+
+ 2. Use the specific FIT image recipe rather than the base kernel recipe.
+ For example, instead of::
+
+ bitbake linux-yocto
+
+ You now need to use::
+
+ bitbake linux-yocto-fitimage
+
+ 3. If you want to use the FIT image as a replacement for the kernel image in the
+ root filesystem, add the following configuration to your machine configuration file::
+
+ # Do not install the kernel image package
+ RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = ""
+
+ # Install the FIT image package
+ MACHINE_EXTRA_RDEPENDS += "${PREFERRED_PROVIDER_virtual/kernel}-fitimage"
+
+ # Configure the image.bbclass to depend on the fitImage instead of only
+ # the kernel to ensure the fitImage is built with the image
+ KERNEL_DEPLOY_DEPEND = "${PREFERRED_PROVIDER_virtual/kernel}-fitimage:do_deploy"
+
Removed features
~~~~~~~~~~~~~~~~