Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 1 | Release 1.4 (dylan) |
| 2 | =================== |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 3 | |
| 4 | This section provides migration information for moving to the Yocto |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 5 | Project 1.4 Release (codename "dylan") from the prior release. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 6 | |
| 7 | .. _migration-1.4-bitbake: |
| 8 | |
| 9 | BitBake |
| 10 | ------- |
| 11 | |
| 12 | Differences include the following: |
| 13 | |
| 14 | - *Comment Continuation:* If a comment ends with a line continuation |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 15 | (\\) character, then the next line must also be a comment. Any |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 16 | instance where this is not the case, now triggers a warning. You must |
| 17 | either remove the continuation character, or be sure the next line is |
| 18 | a comment. |
| 19 | |
| 20 | - *Package Name Overrides:* The runtime package specific variables |
| 21 | :term:`RDEPENDS`, |
| 22 | :term:`RRECOMMENDS`, |
| 23 | :term:`RSUGGESTS`, |
| 24 | :term:`RPROVIDES`, |
| 25 | :term:`RCONFLICTS`, |
| 26 | :term:`RREPLACES`, :term:`FILES`, |
| 27 | :term:`ALLOW_EMPTY`, and the pre, post, install, |
| 28 | and uninstall script functions ``pkg_preinst``, ``pkg_postinst``, |
| 29 | ``pkg_prerm``, and ``pkg_postrm`` should always have a package name |
| 30 | override. For example, use ``RDEPENDS_${PN}`` for the main package |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 31 | instead of :term:`RDEPENDS`. BitBake uses more strict checks when it |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 32 | parses recipes. |
| 33 | |
| 34 | .. _migration-1.4-build-behavior: |
| 35 | |
| 36 | Build Behavior |
| 37 | -------------- |
| 38 | |
| 39 | Differences include the following: |
| 40 | |
| 41 | - *Shared State Code:* The shared state code has been optimized to |
| 42 | avoid running unnecessary tasks. For example, the following no longer |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 43 | populates the target sysroot since that is not necessary:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 44 | |
| 45 | $ bitbake -c rootfs some-image |
| 46 | |
| 47 | Instead, the system just needs to extract the |
| 48 | output package contents, re-create the packages, and construct the |
| 49 | root filesystem. This change is unlikely to cause any problems unless |
| 50 | you have missing declared dependencies. |
| 51 | |
| 52 | - *Scanning Directory Names:* When scanning for files in |
| 53 | :term:`SRC_URI`, the build system now uses |
| 54 | :term:`FILESOVERRIDES` instead of |
| 55 | :term:`OVERRIDES` for the directory names. In |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 56 | general, the values previously in :term:`OVERRIDES` are now in |
| 57 | :term:`FILESOVERRIDES` as well. However, if you relied upon an additional |
| 58 | value you previously added to :term:`OVERRIDES`, you might now need to |
| 59 | add it to :term:`FILESOVERRIDES` unless you are already adding it through |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 60 | the :term:`MACHINEOVERRIDES` or |
| 61 | :term:`DISTROOVERRIDES` variables, as |
| 62 | appropriate. For more related changes, see the |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 63 | ":ref:`migration-guides/migration-1.4:variables`" section. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 64 | |
| 65 | .. _migration-1.4-proxies-and-fetching-source: |
| 66 | |
| 67 | Proxies and Fetching Source |
| 68 | --------------------------- |
| 69 | |
| 70 | A new ``oe-git-proxy`` script has been added to replace previous methods |
| 71 | of handling proxies and fetching source from Git. See the |
| 72 | ``meta-yocto/conf/site.conf.sample`` file for information on how to use |
| 73 | this script. |
| 74 | |
| 75 | .. _migration-1.4-custom-interfaces-file-netbase-change: |
| 76 | |
| 77 | Custom Interfaces File (netbase change) |
| 78 | --------------------------------------- |
| 79 | |
| 80 | If you have created your own custom ``etc/network/interfaces`` file by |
| 81 | creating an append file for the ``netbase`` recipe, you now need to |
| 82 | create an append file for the ``init-ifupdown`` recipe instead, which |
| 83 | you can find in the :term:`Source Directory` at |
| 84 | ``meta/recipes-core/init-ifupdown``. For information on how to use |
| 85 | append files, see the |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 86 | ":ref:`dev-manual/common-tasks:appending other layers metadata with your layer`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 87 | section in the Yocto Project Development Tasks Manual. |
| 88 | |
| 89 | .. _migration-1.4-remote-debugging: |
| 90 | |
| 91 | Remote Debugging |
| 92 | ---------------- |
| 93 | |
| 94 | Support for remote debugging with the Eclipse IDE is now separated into |
| 95 | an image feature (``eclipse-debug``) that corresponds to the |
| 96 | ``packagegroup-core-eclipse-debug`` package group. Previously, the |
| 97 | debugging feature was included through the ``tools-debug`` image |
| 98 | feature, which corresponds to the ``packagegroup-core-tools-debug`` |
| 99 | package group. |
| 100 | |
| 101 | .. _migration-1.4-variables: |
| 102 | |
| 103 | Variables |
| 104 | --------- |
| 105 | |
| 106 | The following variables have changed: |
| 107 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 108 | - :term:`SANITY_TESTED_DISTROS`: This variable now uses a distribution |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 109 | ID, which is composed of the host distributor ID followed by the |
| 110 | release. Previously, |
| 111 | :term:`SANITY_TESTED_DISTROS` was |
| 112 | composed of the description field. For example, "Ubuntu 12.10" |
| 113 | becomes "Ubuntu-12.10". You do not need to worry about this change if |
| 114 | you are not specifically setting this variable, or if you are |
| 115 | specifically setting it to "". |
| 116 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 117 | - :term:`SRC_URI`: The ``${``\ :term:`PN`\ ``}``, |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 118 | ``${``\ :term:`PF`\ ``}``, |
| 119 | ``${``\ :term:`P`\ ``}``, and ``FILE_DIRNAME`` directories |
| 120 | have been dropped from the default value of the |
| 121 | :term:`FILESPATH` variable, which is used as the |
| 122 | search path for finding files referred to in |
| 123 | :term:`SRC_URI`. If you have a recipe that relied upon |
| 124 | these directories, which would be unusual, then you will need to add |
| 125 | the appropriate paths within the recipe or, alternatively, rearrange |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 126 | the files. The most common locations are still covered by ``${``\ :term:`BP`\ ``}``, |
| 127 | ``${``\ :term:`BPN`\ ``}``, and "files", which all remain in the default value of |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 128 | :term:`FILESPATH`. |
| 129 | |
| 130 | .. _migration-target-package-management-with-rpm: |
| 131 | |
| 132 | Target Package Management with RPM |
| 133 | ---------------------------------- |
| 134 | |
| 135 | If runtime package management is enabled and the RPM backend is |
| 136 | selected, Smart is now installed for package download, dependency |
| 137 | resolution, and upgrades instead of Zypper. For more information on how |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 138 | to use Smart, run the following command on the target:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 139 | |
| 140 | smart --help |
| 141 | |
| 142 | .. _migration-1.4-recipes-moved: |
| 143 | |
| 144 | Recipes Moved |
| 145 | ------------- |
| 146 | |
| 147 | The following recipes were moved from their previous locations because |
| 148 | they are no longer used by anything in the OpenEmbedded-Core: |
| 149 | |
| 150 | - ``clutter-box2d``: Now resides in the ``meta-oe`` layer. |
| 151 | |
| 152 | - ``evolution-data-server``: Now resides in the ``meta-gnome`` layer. |
| 153 | |
| 154 | - ``gthumb``: Now resides in the ``meta-gnome`` layer. |
| 155 | |
| 156 | - ``gtkhtml2``: Now resides in the ``meta-oe`` layer. |
| 157 | |
| 158 | - ``gupnp``: Now resides in the ``meta-multimedia`` layer. |
| 159 | |
| 160 | - ``gypsy``: Now resides in the ``meta-oe`` layer. |
| 161 | |
| 162 | - ``libcanberra``: Now resides in the ``meta-gnome`` layer. |
| 163 | |
| 164 | - ``libgdata``: Now resides in the ``meta-gnome`` layer. |
| 165 | |
| 166 | - ``libmusicbrainz``: Now resides in the ``meta-multimedia`` layer. |
| 167 | |
| 168 | - ``metacity``: Now resides in the ``meta-gnome`` layer. |
| 169 | |
| 170 | - ``polkit``: Now resides in the ``meta-oe`` layer. |
| 171 | |
| 172 | - ``zeroconf``: Now resides in the ``meta-networking`` layer. |
| 173 | |
| 174 | .. _migration-1.4-removals-and-renames: |
| 175 | |
| 176 | Removals and Renames |
| 177 | -------------------- |
| 178 | |
| 179 | The following list shows what has been removed or renamed: |
| 180 | |
| 181 | - ``evieext``: Removed because it has been removed from ``xserver`` |
| 182 | since 2008. |
| 183 | |
| 184 | - *Gtk+ DirectFB:* Removed support because upstream Gtk+ no longer |
| 185 | supports it as of version 2.18. |
| 186 | |
| 187 | - ``libxfontcache / xfontcacheproto``: Removed because they were |
| 188 | removed from the Xorg server in 2008. |
| 189 | |
| 190 | - ``libxp / libxprintapputil / libxprintutil / printproto``: Removed |
| 191 | because the XPrint server was removed from Xorg in 2008. |
| 192 | |
| 193 | - ``libxtrap / xtrapproto``: Removed because their functionality was |
| 194 | broken upstream. |
| 195 | |
| 196 | - *linux-yocto 3.0 kernel:* Removed with linux-yocto 3.8 kernel being |
| 197 | added. The linux-yocto 3.2 and linux-yocto 3.4 kernels remain as part |
| 198 | of the release. |
| 199 | |
| 200 | - ``lsbsetup``: Removed with functionality now provided by |
| 201 | ``lsbtest``. |
| 202 | |
| 203 | - ``matchbox-stroke``: Removed because it was never more than a |
| 204 | proof-of-concept. |
| 205 | |
| 206 | - ``matchbox-wm-2 / matchbox-theme-sato-2``: Removed because they are |
| 207 | not maintained. However, ``matchbox-wm`` and ``matchbox-theme-sato`` |
| 208 | are still provided. |
| 209 | |
| 210 | - ``mesa-dri``: Renamed to ``mesa``. |
| 211 | |
| 212 | - ``mesa-xlib``: Removed because it was no longer useful. |
| 213 | |
| 214 | - ``mutter``: Removed because nothing ever uses it and the recipe is |
| 215 | very old. |
| 216 | |
| 217 | - ``orinoco-conf``: Removed because it has become obsolete. |
| 218 | |
| 219 | - ``update-modules``: Removed because it is no longer used. The |
| 220 | kernel module ``postinstall`` and ``postrm`` scripts can now do the |
| 221 | same task without the use of this script. |
| 222 | |
| 223 | - ``web``: Removed because it is not maintained. Superseded by |
| 224 | ``web-webkit``. |
| 225 | |
| 226 | - ``xf86bigfontproto``: Removed because upstream it has been disabled |
| 227 | by default since 2007. Nothing uses ``xf86bigfontproto``. |
| 228 | |
| 229 | - ``xf86rushproto``: Removed because its dependency in ``xserver`` |
| 230 | was spurious and it was removed in 2005. |
| 231 | |
| 232 | - ``zypper / libzypp / sat-solver``: Removed and been functionally |
| 233 | replaced with Smart (``python-smartpm``) when RPM packaging is used |
| 234 | and package management is enabled on the target. |
| 235 | |