Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1 | Introduction |
| 2 | ============ |
| 3 | |
| 4 | This guide provides a list of the backwards-incompatible changes you |
| 5 | might need to adapt to in your existing Yocto Project configuration |
| 6 | when upgrading to a new release. |
| 7 | |
| 8 | If you are upgrading over multiple releases, you will need to follow |
| 9 | the sections from the version following the one you were previously |
| 10 | using up to the new version you are upgrading to. |
| 11 | |
| 12 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 13 | General Migration Considerations |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 14 | -------------------------------- |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 15 | |
| 16 | Some considerations are not tied to a specific Yocto Project release. |
| 17 | This section presents information you should consider when migrating to |
| 18 | any new Yocto Project release. |
| 19 | |
| 20 | - *Dealing with Customized Recipes*: |
| 21 | |
| 22 | Issues could arise if you take |
| 23 | older recipes that contain customizations and simply copy them |
| 24 | forward expecting them to work after you migrate to new Yocto Project |
| 25 | metadata. For example, suppose you have a recipe in your layer that |
| 26 | is a customized version of a core recipe copied from the earlier |
| 27 | release, rather than through the use of an append file. When you |
| 28 | migrate to a newer version of Yocto Project, the metadata (e.g. |
| 29 | perhaps an include file used by the recipe) could have changed in a |
| 30 | way that would break the build. Say, for example, a function is |
| 31 | removed from an include file and the customized recipe tries to call |
| 32 | that function. |
| 33 | |
| 34 | You could "forward-port" all your customizations in your recipe so |
| 35 | that everything works for the new release. However, this is not the |
| 36 | optimal solution as you would have to repeat this process with each |
| 37 | new release if changes occur that give rise to problems. |
| 38 | |
| 39 | The better solution (where practical) is to use append files |
| 40 | (``*.bbappend``) to capture any customizations you want to make to a |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 41 | recipe. Doing so isolates your changes from the main recipe, making |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 42 | them much more manageable. However, sometimes it is not practical to |
| 43 | use an append file. A good example of this is when introducing a |
| 44 | newer or older version of a recipe in another layer. |
| 45 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 46 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 47 | - *Updating Append Files*: |
| 48 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 49 | Since append (``.bbappend``) files generally only contain |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 50 | your customizations, they often do not need to be adjusted for new |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 51 | releases. However, if the append file is specific to a |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 52 | particular version of the recipe (i.e. its name does not use the % |
| 53 | wildcard) and the version of the recipe to which it is appending has |
| 54 | changed, then you will at a minimum need to rename the append file to |
| 55 | match the name of the recipe file. A mismatch between an append file |
| 56 | and its corresponding recipe file (``.bb``) will trigger an error |
| 57 | during parsing. |
| 58 | |
| 59 | Depending on the type of customization the append file applies, other |
| 60 | incompatibilities might occur when you upgrade. For example, if your |
| 61 | append file applies a patch and the recipe to which it is appending |
| 62 | is updated to a newer version, the patch might no longer apply. If |
| 63 | this is the case and assuming the patch is still needed, you must |
| 64 | modify the patch file so that it does apply. |
| 65 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 66 | .. tip:: |
| 67 | |
| 68 | You can list all append files used in your configuration by running: |
| 69 | |
| 70 | bitbake-layers show-appends |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 71 | |
| 72 | |
Patrick Williams | 975a06f | 2022-10-21 14:42:47 -0500 | [diff] [blame] | 73 | .. _migration-general-buildhistory: |
| 74 | |
| 75 | - *Checking Image / SDK Changes*: |
| 76 | |
| 77 | The :ref:`buildhistory <ref-classes-buildhistory>` class can be used |
| 78 | if you wish to check the impact of changes to images / SDKs across |
| 79 | the migration (e.g. added/removed packages, added/removed files, size |
| 80 | changes etc.). To do this, follow these steps: |
| 81 | |
| 82 | 1. Enable buildhistory before the migration |
| 83 | |
| 84 | 2. Run a pre-migration build |
| 85 | |
| 86 | 3. Capture the buildhistory output (as specified by :term:`BUILDHISTORY_DIR`) |
| 87 | and ensure it is preserved for subsequent builds. How you would do this |
| 88 | depends on how you are running your builds - if you are doing this all on |
Patrick Williams | 2390b1b | 2022-11-03 13:47:49 -0500 | [diff] [blame] | 89 | one workstation in the same :term:`Build Directory` you may not need to do |
Patrick Williams | 975a06f | 2022-10-21 14:42:47 -0500 | [diff] [blame] | 90 | anything other than not deleting the buildhistory output directory. For |
| 91 | builds in a pipeline it may be more complicated. |
| 92 | |
| 93 | 4. Set a tag in the buildhistory output (which is a git repository) before |
| 94 | migration, to make the commit from the pre-migration build easy to find |
| 95 | as you may end up running multiple builds during the migration. |
| 96 | |
| 97 | 5. Perform the migration |
| 98 | |
| 99 | 6. Run a build |
| 100 | |
| 101 | 7. Check the output changes between the previously set tag and HEAD in the |
| 102 | buildhistory output using ``git diff`` or ``buildhistory-diff``. |
| 103 | |
| 104 | For more information on using buildhistory, see |
| 105 | :ref:`dev-manual/common-tasks:maintaining build output quality`. |