Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 1 | Release 1.6 (daisy) |
| 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.6 Release (codename "daisy") from the prior release. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 6 | |
| 7 | .. _migration-1.6-archiver-class: |
| 8 | |
| 9 | ``archiver`` Class |
| 10 | ------------------ |
| 11 | |
| 12 | The :ref:`archiver <ref-classes-archiver>` class has been rewritten |
| 13 | and its configuration has been simplified. For more details on the |
| 14 | source archiver, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 15 | ":ref:`dev-manual/common-tasks:maintaining open source license compliance during your product's lifecycle`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 16 | section in the Yocto Project Development Tasks Manual. |
| 17 | |
| 18 | .. _migration-1.6-packaging-changes: |
| 19 | |
| 20 | Packaging Changes |
| 21 | ----------------- |
| 22 | |
| 23 | The following packaging changes have been made: |
| 24 | |
| 25 | - The ``binutils`` recipe no longer produces a ``binutils-symlinks`` |
| 26 | package. ``update-alternatives`` is now used to handle the preferred |
| 27 | ``binutils`` variant on the target instead. |
| 28 | |
| 29 | - The tc (traffic control) utilities have been split out of the main |
| 30 | ``iproute2`` package and put into the ``iproute2-tc`` package. |
| 31 | |
| 32 | - The ``gtk-engines`` schemas have been moved to a dedicated |
| 33 | ``gtk-engines-schemas`` package. |
| 34 | |
| 35 | - The ``armv7a`` with thumb package architecture suffix has changed. |
| 36 | The suffix for these packages with the thumb optimization enabled is |
| 37 | "t2" as it should be. Use of this suffix was not the case in the 1.5 |
| 38 | release. Architecture names will change within package feeds as a |
| 39 | result. |
| 40 | |
| 41 | .. _migration-1.6-bitbake: |
| 42 | |
| 43 | BitBake |
| 44 | ------- |
| 45 | |
| 46 | The following changes have been made to :term:`BitBake`. |
| 47 | |
| 48 | .. _migration-1.6-matching-branch-requirement-for-git-fetching: |
| 49 | |
| 50 | Matching Branch Requirement for Git Fetching |
| 51 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 52 | |
| 53 | When fetching source from a Git repository using |
| 54 | :term:`SRC_URI`, BitBake will now validate the |
| 55 | :term:`SRCREV` value against the branch. You can specify |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 56 | the branch using the following form:: |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 57 | |
| 58 | SRC_URI = "git://server.name/repository;branch=branchname" |
| 59 | |
| 60 | If you do not specify a branch, BitBake looks in the default "master" branch. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 61 | |
| 62 | Alternatively, if you need to bypass this check (e.g. if you are |
| 63 | fetching a revision corresponding to a tag that is not on any branch), |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 64 | you can add ";nobranch=1" to the end of the URL within :term:`SRC_URI`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 65 | |
| 66 | .. _migration-1.6-bitbake-deps: |
| 67 | |
| 68 | Python Definition substitutions |
| 69 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 70 | |
| 71 | BitBake had some previously deprecated Python definitions within its |
| 72 | ``bb`` module removed. You should use their sub-module counterparts |
| 73 | instead: |
| 74 | |
| 75 | - ``bb.MalformedUrl``: Use ``bb.fetch.MalformedUrl``. |
| 76 | |
| 77 | - ``bb.encodeurl``: Use ``bb.fetch.encodeurl``. |
| 78 | |
| 79 | - ``bb.decodeurl``: Use ``bb.fetch.decodeurl`` |
| 80 | |
| 81 | - ``bb.mkdirhier``: Use ``bb.utils.mkdirhier``. |
| 82 | |
| 83 | - ``bb.movefile``: Use ``bb.utils.movefile``. |
| 84 | |
| 85 | - ``bb.copyfile``: Use ``bb.utils.copyfile``. |
| 86 | |
| 87 | - ``bb.which``: Use ``bb.utils.which``. |
| 88 | |
| 89 | - ``bb.vercmp_string``: Use ``bb.utils.vercmp_string``. |
| 90 | |
| 91 | - ``bb.vercmp``: Use ``bb.utils.vercmp``. |
| 92 | |
| 93 | .. _migration-1.6-bitbake-fetcher: |
| 94 | |
| 95 | SVK Fetcher |
| 96 | ~~~~~~~~~~~ |
| 97 | |
| 98 | The SVK fetcher has been removed from BitBake. |
| 99 | |
| 100 | .. _migration-1.6-bitbake-console-output: |
| 101 | |
| 102 | Console Output Error Redirection |
| 103 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 104 | |
| 105 | The BitBake console UI will now output errors to ``stderr`` instead of |
| 106 | ``stdout``. Consequently, if you are piping or redirecting the output of |
| 107 | ``bitbake`` to somewhere else, and you wish to retain the errors, you |
| 108 | will need to add ``2>&1`` (or something similar) to the end of your |
| 109 | ``bitbake`` command line. |
| 110 | |
| 111 | .. _migration-1.6-task-taskname-overrides: |
| 112 | |
| 113 | ``task-``\ taskname Overrides |
| 114 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 115 | |
| 116 | ``task-``\ taskname overrides have been adjusted so that tasks whose |
| 117 | names contain underscores have the underscores replaced by hyphens for |
| 118 | the override so that they now function properly. For example, the task |
| 119 | override for :ref:`ref-tasks-populate_sdk` is |
| 120 | ``task-populate-sdk``. |
| 121 | |
| 122 | .. _migration-1.6-variable-changes: |
| 123 | |
| 124 | Changes to Variables |
| 125 | -------------------- |
| 126 | |
| 127 | The following variables have changed. For information on the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 128 | OpenEmbedded build system variables, see the ":doc:`/ref-manual/variables`" Chapter. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 129 | |
| 130 | .. _migration-1.6-variable-changes-TMPDIR: |
| 131 | |
| 132 | ``TMPDIR`` |
| 133 | ~~~~~~~~~~ |
| 134 | |
| 135 | :term:`TMPDIR` can no longer be on an NFS mount. NFS does |
| 136 | not offer full POSIX locking and inode consistency and can cause |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 137 | unexpected issues if used to store :term:`TMPDIR`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 138 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 139 | The check for this occurs on startup. If :term:`TMPDIR` is detected on an |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 140 | NFS mount, an error occurs. |
| 141 | |
| 142 | .. _migration-1.6-variable-changes-PRINC: |
| 143 | |
| 144 | ``PRINC`` |
| 145 | ~~~~~~~~~ |
| 146 | |
| 147 | The ``PRINC`` variable has been deprecated and triggers a warning if |
| 148 | detected during a build. For :term:`PR` increments on changes, |
| 149 | use the PR service instead. You can find out more about this service in |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 150 | the ":ref:`dev-manual/common-tasks:working with a pr service`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 151 | section in the Yocto Project Development Tasks Manual. |
| 152 | |
| 153 | .. _migration-1.6-variable-changes-IMAGE_TYPES: |
| 154 | |
| 155 | ``IMAGE_TYPES`` |
| 156 | ~~~~~~~~~~~~~~~ |
| 157 | |
| 158 | The "sum.jffs2" option for :term:`IMAGE_TYPES` has |
| 159 | been replaced by the "jffs2.sum" option, which fits the processing |
| 160 | order. |
| 161 | |
| 162 | .. _migration-1.6-variable-changes-COPY_LIC_MANIFEST: |
| 163 | |
| 164 | ``COPY_LIC_MANIFEST`` |
| 165 | ~~~~~~~~~~~~~~~~~~~~~ |
| 166 | |
| 167 | The :term:`COPY_LIC_MANIFEST` variable must now |
| 168 | be set to "1" rather than any value in order to enable it. |
| 169 | |
| 170 | .. _migration-1.6-variable-changes-COPY_LIC_DIRS: |
| 171 | |
| 172 | ``COPY_LIC_DIRS`` |
| 173 | ~~~~~~~~~~~~~~~~~ |
| 174 | |
| 175 | The :term:`COPY_LIC_DIRS` variable must now be set |
| 176 | to "1" rather than any value in order to enable it. |
| 177 | |
| 178 | .. _migration-1.6-variable-changes-PACKAGE_GROUP: |
| 179 | |
| 180 | ``PACKAGE_GROUP`` |
| 181 | ~~~~~~~~~~~~~~~~~ |
| 182 | |
| 183 | The ``PACKAGE_GROUP`` variable has been renamed to |
| 184 | :term:`FEATURE_PACKAGES` to more accurately |
| 185 | reflect its purpose. You can still use ``PACKAGE_GROUP`` but the |
| 186 | OpenEmbedded build system produces a warning message when it encounters |
| 187 | the variable. |
| 188 | |
| 189 | .. _migration-1.6-variable-changes-variable-entry-behavior: |
| 190 | |
| 191 | Preprocess and Post Process Command Variable Behavior |
| 192 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 193 | |
| 194 | The following variables now expect a semicolon separated list of |
| 195 | functions to call and not arbitrary shell commands: |
| 196 | |
| 197 | - :term:`ROOTFS_PREPROCESS_COMMAND` |
| 198 | - :term:`ROOTFS_POSTPROCESS_COMMAND` |
| 199 | - :term:`SDK_POSTPROCESS_COMMAND` |
| 200 | - :term:`POPULATE_SDK_POST_TARGET_COMMAND` |
| 201 | - :term:`POPULATE_SDK_POST_HOST_COMMAND` |
| 202 | - :term:`IMAGE_POSTPROCESS_COMMAND` |
| 203 | - :term:`IMAGE_PREPROCESS_COMMAND` |
| 204 | - :term:`ROOTFS_POSTUNINSTALL_COMMAND` |
| 205 | - :term:`ROOTFS_POSTINSTALL_COMMAND` |
| 206 | |
| 207 | For |
| 208 | migration purposes, you can simply wrap shell commands in a shell |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 209 | function and then call the function. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 210 | |
| 211 | my_postprocess_function() { |
| 212 | echo "hello" > ${IMAGE_ROOTFS}/hello.txt |
| 213 | } |
| 214 | ROOTFS_POSTPROCESS_COMMAND += "my_postprocess_function; " |
| 215 | |
| 216 | .. _migration-1.6-package-test-ptest: |
| 217 | |
| 218 | Package Test (ptest) |
| 219 | -------------------- |
| 220 | |
| 221 | Package Tests (ptest) are built but not installed by default. For |
| 222 | information on using Package Tests, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 223 | ":ref:`dev-manual/common-tasks:testing packages with ptest`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 224 | section in the Yocto Project Development Tasks Manual. For information on the |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 225 | ``ptest`` class, see the ":ref:`ref-classes-ptest`" section. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 226 | |
| 227 | .. _migration-1.6-build-changes: |
| 228 | |
| 229 | Build Changes |
| 230 | ------------- |
| 231 | |
| 232 | Separate build and source directories have been enabled by default for |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 233 | selected recipes where it is known to work and for all |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 234 | recipes that inherit the :ref:`cmake <ref-classes-cmake>` class. In |
| 235 | future releases the :ref:`autotools <ref-classes-autotools>` class |
| 236 | will enable a separate build directory by default as well. Recipes |
| 237 | building Autotools-based software that fails to build with a separate |
| 238 | build directory should be changed to inherit from the |
| 239 | :ref:`autotools-brokensep <ref-classes-autotools>` class instead of |
| 240 | the ``autotools`` or ``autotools_stage``\ classes. |
| 241 | |
| 242 | .. _migration-1.6-building-qemu-native: |
| 243 | |
| 244 | ``qemu-native`` |
| 245 | --------------- |
| 246 | |
| 247 | ``qemu-native`` now builds without SDL-based graphical output support by |
| 248 | default. The following additional lines are needed in your |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 249 | ``local.conf`` to enable it:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 250 | |
| 251 | PACKAGECONFIG_pn-qemu-native = "sdl" |
| 252 | ASSUME_PROVIDED += "libsdl-native" |
| 253 | |
| 254 | .. note:: |
| 255 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 256 | The default ``local.conf`` contains these statements. Consequently, if you |
| 257 | are building a headless system and using a default ``local.conf`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 258 | file, you will need comment these two lines out. |
| 259 | |
| 260 | .. _migration-1.6-core-image-basic: |
| 261 | |
| 262 | ``core-image-basic`` |
| 263 | -------------------- |
| 264 | |
| 265 | ``core-image-basic`` has been renamed to ``core-image-full-cmdline``. |
| 266 | |
| 267 | In addition to ``core-image-basic`` being renamed, |
| 268 | ``packagegroup-core-basic`` has been renamed to |
| 269 | ``packagegroup-core-full-cmdline`` to match. |
| 270 | |
| 271 | .. _migration-1.6-licensing: |
| 272 | |
| 273 | Licensing |
| 274 | --------- |
| 275 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 276 | The top-level :term:`LICENSE` file has been changed to better describe the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 277 | license of the various components of :term:`OpenEmbedded-Core (OE-Core)`. However, |
| 278 | the licensing itself remains unchanged. |
| 279 | |
| 280 | Normally, this change would not cause any side-effects. However, some |
| 281 | recipes point to this file within |
| 282 | :term:`LIC_FILES_CHKSUM` (as |
| 283 | ``${COREBASE}/LICENSE``) and thus the accompanying checksum must be |
| 284 | changed from 3f40d7994397109285ec7b81fdeb3b58 to |
| 285 | 4d92cd373abda3937c2bc47fbc49d690. A better alternative is to have |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 286 | :term:`LIC_FILES_CHKSUM` point to a file describing the license that is |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 287 | distributed with the source that the recipe is building, if possible, |
| 288 | rather than pointing to ``${COREBASE}/LICENSE``. |
| 289 | |
| 290 | .. _migration-1.6-cflags-options: |
| 291 | |
| 292 | ``CFLAGS`` Options |
| 293 | ------------------ |
| 294 | |
| 295 | The "-fpermissive" option has been removed from the default |
| 296 | :term:`CFLAGS` value. You need to take action on |
| 297 | individual recipes that fail when building with this option. You need to |
| 298 | either patch the recipes to fix the issues reported by the compiler, or |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 299 | you need to add "-fpermissive" to :term:`CFLAGS` in the recipes. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 300 | |
| 301 | .. _migration-1.6-custom-images: |
| 302 | |
| 303 | Custom Image Output Types |
| 304 | ------------------------- |
| 305 | |
| 306 | Custom image output types, as selected using |
| 307 | :term:`IMAGE_FSTYPES`, must declare their |
| 308 | dependencies on other image types (if any) using a new |
| 309 | :term:`IMAGE_TYPEDEP` variable. |
| 310 | |
| 311 | .. _migration-1.6-do-package-write-task: |
| 312 | |
| 313 | Tasks |
| 314 | ----- |
| 315 | |
| 316 | The ``do_package_write`` task has been removed. The task is no longer |
| 317 | needed. |
| 318 | |
| 319 | .. _migration-1.6-update-alternatives-provider: |
| 320 | |
| 321 | ``update-alternative`` Provider |
| 322 | ------------------------------- |
| 323 | |
| 324 | The default ``update-alternatives`` provider has been changed from |
| 325 | ``opkg`` to ``opkg-utils``. This change resolves some troublesome |
| 326 | circular dependencies. The runtime package has also been renamed from |
| 327 | ``update-alternatives-cworth`` to ``update-alternatives-opkg``. |
| 328 | |
| 329 | .. _migration-1.6-virtclass-overrides: |
| 330 | |
| 331 | ``virtclass`` Overrides |
| 332 | ----------------------- |
| 333 | |
| 334 | The ``virtclass`` overrides are now deprecated. Use the equivalent class |
| 335 | overrides instead (e.g. ``virtclass-native`` becomes ``class-native``.) |
| 336 | |
| 337 | .. _migration-1.6-removed-renamed-recipes: |
| 338 | |
| 339 | Removed and Renamed Recipes |
| 340 | --------------------------- |
| 341 | |
| 342 | The following recipes have been removed: |
| 343 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 344 | - ``packagegroup-toolset-native`` --- this recipe is largely unused. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 345 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 346 | - ``linux-yocto-3.8`` --- support for the Linux yocto 3.8 kernel has been |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 347 | dropped. Support for the 3.10 and 3.14 kernels have been added with |
| 348 | the ``linux-yocto-3.10`` and ``linux-yocto-3.14`` recipes. |
| 349 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 350 | - ``ocf-linux`` --- this recipe has been functionally replaced using |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 351 | ``cryptodev-linux``. |
| 352 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 353 | - ``genext2fs`` --- ``genext2fs`` is no longer used by the build system |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 354 | and is unmaintained upstream. |
| 355 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 356 | - ``js`` --- this provided an ancient version of Mozilla's javascript |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 357 | engine that is no longer needed. |
| 358 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 359 | - ``zaurusd`` --- the recipe has been moved to the ``meta-handheld`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 360 | layer. |
| 361 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 362 | - ``eglibc 2.17`` --- replaced by the ``eglibc 2.19`` recipe. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 363 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 364 | - ``gcc 4.7.2`` --- replaced by the now stable ``gcc 4.8.2``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 365 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 366 | - ``external-sourcery-toolchain`` --- this recipe is now maintained in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 367 | the ``meta-sourcery`` layer. |
| 368 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 369 | - ``linux-libc-headers-yocto 3.4+git`` --- now using version 3.10 of the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 370 | ``linux-libc-headers`` by default. |
| 371 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 372 | - ``meta-toolchain-gmae`` --- this recipe is obsolete. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 373 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 374 | - ``packagegroup-core-sdk-gmae`` --- this recipe is obsolete. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 375 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 376 | - ``packagegroup-core-standalone-gmae-sdk-target`` --- this recipe is |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 377 | obsolete. |
| 378 | |
| 379 | .. _migration-1.6-removed-classes: |
| 380 | |
| 381 | Removed Classes |
| 382 | --------------- |
| 383 | |
| 384 | The following classes have become obsolete and have been removed: |
| 385 | |
| 386 | - ``module_strip`` |
| 387 | |
| 388 | - ``pkg_metainfo`` |
| 389 | |
| 390 | - ``pkg_distribute`` |
| 391 | |
| 392 | - ``image-empty`` |
| 393 | |
| 394 | .. _migration-1.6-reference-bsps: |
| 395 | |
| 396 | Reference Board Support Packages (BSPs) |
| 397 | --------------------------------------- |
| 398 | |
| 399 | The following reference BSPs changes occurred: |
| 400 | |
| 401 | - The BeagleBoard (``beagleboard``) ARM reference hardware has been |
| 402 | replaced by the BeagleBone (``beaglebone``) hardware. |
| 403 | |
| 404 | - The RouterStation Pro (``routerstationpro``) MIPS reference hardware |
| 405 | has been replaced by the EdgeRouter Lite (``edgerouter``) hardware. |
| 406 | |
| 407 | The previous reference BSPs for the ``beagleboard`` and |
| 408 | ``routerstationpro`` machines are still available in a new |
| 409 | ``meta-yocto-bsp-old`` layer in the |
| 410 | :yocto_git:`Source Repositories <>` at |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 411 | :yocto_git:`/meta-yocto-bsp-old/`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 412 | |
| 413 | |