diff --git a/documentation/ref-manual/migration.xml b/documentation/ref-manual/migration.xml
index e6c0aa36b8..70c89aa631 100644
--- a/documentation/ref-manual/migration.xml
+++ b/documentation/ref-manual/migration.xml
@@ -2447,8 +2447,8 @@
- d.delVar('varname') and
- d.setVar('varname', None)
+ d.delVar('VARNAME') and
+ d.setVar('VARNAME', None)
result in the variable and all of its overrides being
cleared out.
Before the change, only the non-overridden values
@@ -2740,13 +2740,13 @@
Variable expressions, such as
- ${varname}
+ ${VARNAME}
no longer expand automatically within Python functions.
Suppressing expansion was done to allow Python functions to
construct shell scripts or other code for situations in which you
do not want such expressions expanded.
For any existing code that relies on these expansions, you need to
- change the expansions to either expand the value of individual
+ change the expansions to expand the value of individual
variables through d.getVar().
To alternatively expand more complex expressions,
use d.expand().
@@ -2880,7 +2880,7 @@
to allow the default implementation from the
autotools class to work such that
autoreconf succeeds and produces a working
- configure script), and to remove the
+ configure script, and to remove the
overridden do_configure task such that the
default implementation does get used.
@@ -2910,7 +2910,8 @@
do_rootfs, you should make edits so that
those tasks are after the
do_image_complete
- task rather than before the task so that the your added tasks
+ task rather than after do_rootfs
+ so that the your added tasks
run at the correct time.
@@ -3128,7 +3129,7 @@
The separate poky-tiny distribution
now uses the musl C library instead of a heavily pared
down glibc.
- Using glibc results in a smaller
+ Using musl results in a smaller
distribution and facilitates much greater maintainability
because musl is designed to have a small footprint.
@@ -3205,6 +3206,9 @@
If your host distribution does not provide a sufficiently
recent version, you can install the buildtools, which
will provide it.
+ See the
+ "Required Git, tar, and Python Versions"
+ section for more information on the buildtools tarball.
The buggy and incomplete support for the RPM version 4
@@ -3228,10 +3232,8 @@
or does not specify whether a keyboard is attached, then
the default is to assume a keyboard is attached rather
than assume no keyboard.
-
- This change primarily affects the Sato UI.
-
-
+ This change primarily affects the Sato UI.
+
The .debug directory packaging is
now automatic.
@@ -3248,8 +3250,8 @@
This data has been replaced with
getrusage() data and corrected IO
statistics.
- You will probably need to update code that reads the
- buildstats data.
+ You will probably need to update any custom code that reads
+ the buildstats data.
The
@@ -3272,8 +3274,9 @@
meta-yocto-bsp layer.
Most modern x86 boards do not rely on this file and it only
adds kernel error messages during startup.
- If you do still need the file, you can simply add
- v86d to your image.
+ If you do still need to support
+ uvesafb, you can
+ simply add v86d to your image.