diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index fddf215b85..f681214aa5 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -881,7 +881,6 @@
contains the following:
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
- PRINC := "${@int(PRINC) + 2}"
The append file needs to be in the
meta-xyz/recipes-core/init-ifupdown directory.
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index cc7bbdbcc4..3d5a9b6cad 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -3409,8 +3409,6 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://0001-calibrate-Add-printk-example.patch"
-
- PRINC := "${@int(PRINC) + 1}"
The FILESEXTRAPATHS
and SRC_URI
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml
index 3d4a9b225f..6f58a5771d 100644
--- a/documentation/dev-manual/dev-manual-newbie.xml
+++ b/documentation/dev-manual/dev-manual-newbie.xml
@@ -701,7 +701,6 @@
recipes were referred to as packages - thus, the existence of several BitBake
variables that are seemingly mis-named,
(e.g. PR,
- PRINC,
PV, and
PE).
diff --git a/documentation/ref-manual/migration.xml b/documentation/ref-manual/migration.xml
index 3db3ea6b84..28f21b595e 100644
--- a/documentation/ref-manual/migration.xml
+++ b/documentation/ref-manual/migration.xml
@@ -1112,16 +1112,150 @@
BitBake
- Sample section.
+ The following changes have been made to
+ BitBake.
+
+
+ Python Definition substitutions
+
+
+ had some previously deprecated Python definitions within
+ its bb module removed.
+ You should use their sub-module counterparts instead:
+
+ bb.MalformedUrl:
+ Use bb.fetch.MalformedUrl.
+
+ bb.encodeurl:
+ Use bb.fetch: encodeurl.
+
+ bb.decodeurl:
+ Use bb.fetch.decodeurl
+
+ bb.mkdirhier:
+ Use bb.utils.mkdirhier.
+
+ bb.movefile:
+ Use bb.utils.movefile.
+
+ bb.copyfile:
+ Use bb.utils.copyfile.
+
+ bb.which:
+ Use bb.utils.which.
+
+ bb.vercmp_string:
+ Use bb.utils.vercmp_string.
+
+ bb.vercmp:
+ Use bb.utils.vercmp.
+
+
+
+
+
+
+ SVK Fetcher
+
+
+ The SVK fetcher has been removed from BitBake.
+
+
-
- QA Warnings
+
+ Changes to Variables
- Sample section.
+ The following variables have changed.
+ For information on the OpenEmbedded build system variables, see the
+ "Variables Glossary" Chapter.
+
+
+ TMPDIR
+
+
+ TMPDIR
+ can no longer be on an NFS mount.
+ NFS does not offer full POSIX locking and inode consistency
+ and can cause unexpected issues if used to store
+ TMPDIR.
+
+
+
+ The check for this does not occur on startup.
+ If TMPDIR is detected on an NFS mount,
+ an error occurs.
+ For more information on this restriction, see the
+ TMPDIR description in the
+ "Variables Glossary".
+
+
+
+
+ PRINC
+
+
+ The
+ PRINC
+ variable has been deprecated and triggers a warning if
+ detected during a build.
+ For
+ PR
+ increments on changes, use the PR service instead.
+ You can find out more about this service in the
+ "Working With a PR Service"
+ section in the Yocto Project Development Manual.
+
+
+
+
+ IMAGE_TYPES
+
+
+ The "sum.jffs2" option for
+ IMAGE_TYPES
+ has been replaced by the "jffs2.sum" option, which fits the
+ processing order.
+
+
+
+
+ COPY_LIC_MANIFEST
+
+
+ The COPY_LIC_MANIFEST variable must
+ now be set to "1" rather than any value in order to enable
+ it.
+
+
+
+
+ COPY_LIC_DIRS
+
+
+ The COPY_LIC_DIRS variable must
+ now be set to "1" rather than any value in order to enable
+ it.
+
+
+
+
+ PACKAGE_GROUP
+
+
+ The
+ PACKAGE_GROUP
+ variable has been renamed to
+ FEATURE_PACKAGES
+ to more accurately reflect its purpose.
+ You can still use PACKAGE_GROUP but
+ the OpenEmbedded build system produces a warning message when
+ it encounters the variable.
+
+
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 966f7c2663..6d8e7aa0aa 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -5572,14 +5572,37 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
PRINC
- Causes the PR
+
+
+ The PRINC variable has been deprecated
+ and triggers a warning if detected during a build.
+ For
+ PR
+ increments on changes, use the PR service instead.
+ You can find out more about this service in the
+ "Working With a PR Service"
+ section in the Yocto Project Development Manual.
+
+