summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/migration-2.6.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/migration-2.6.rst')
-rw-r--r--documentation/ref-manual/migration-2.6.rst15
1 files changed, 5 insertions, 10 deletions
diff --git a/documentation/ref-manual/migration-2.6.rst b/documentation/ref-manual/migration-2.6.rst
index aeac509808..d1c6c0c5f5 100644
--- a/documentation/ref-manual/migration-2.6.rst
+++ b/documentation/ref-manual/migration-2.6.rst
@@ -161,13 +161,11 @@ The following changes have been made:
161 allows easier and more direct changes. 161 allows easier and more direct changes.
162 162
163 The ``IMAGE_VERSION_SUFFIX`` variable is set in the ``bitbake.conf`` 163 The ``IMAGE_VERSION_SUFFIX`` variable is set in the ``bitbake.conf``
164 configuration file as follows: 164 configuration file as follows::
165 ::
166 165
167 IMAGE_VERSION_SUFFIX = "-${DATETIME}" 166 IMAGE_VERSION_SUFFIX = "-${DATETIME}"
168 167
169- Several variables have changed names for consistency: 168- Several variables have changed names for consistency::
170 ::
171 169
172 Old Variable Name New Variable Name 170 Old Variable Name New Variable Name
173 ======================================================== 171 ========================================================
@@ -292,8 +290,7 @@ avoids the ``systemd`` recipe from becoming machine-specific for cases
292where machine-specific configurations need to be applied (e.g. for 290where machine-specific configurations need to be applied (e.g. for
293``qemu*`` machines). 291``qemu*`` machines).
294 292
295Currently, the new recipe packages the following files: 293Currently, the new recipe packages the following files::
296::
297 294
298 ${sysconfdir}/machine-id 295 ${sysconfdir}/machine-id
299 ${sysconfdir}/systemd/coredump.conf 296 ${sysconfdir}/systemd/coredump.conf
@@ -393,8 +390,7 @@ If you wish to disable Python profile-guided optimization regardless of
393the value of ``MACHINE_FEATURES``, then ensure that 390the value of ``MACHINE_FEATURES``, then ensure that
394:term:`PACKAGECONFIG` for the ``python3`` recipe 391:term:`PACKAGECONFIG` for the ``python3`` recipe
395does not contain "pgo". You could accomplish the latter using the 392does not contain "pgo". You could accomplish the latter using the
396following at the configuration level: 393following at the configuration level::
397::
398 394
399 PACKAGECONFIG_remove_pn-python3 = "pgo" 395 PACKAGECONFIG_remove_pn-python3 = "pgo"
400 396
@@ -411,8 +407,7 @@ The following miscellaneous changes occurred:
411- Default to using the Thumb-2 instruction set for armv7a and above. If 407- Default to using the Thumb-2 instruction set for armv7a and above. If
412 you have any custom recipes that build software that needs to be 408 you have any custom recipes that build software that needs to be
413 built with the ARM instruction set, change the recipe to set the 409 built with the ARM instruction set, change the recipe to set the
414 instruction set as follows: 410 instruction set as follows::
415 ::
416 411
417 ARM_INSTRUCTION_SET = "arm" 412 ARM_INSTRUCTION_SET = "arm"
418 413