summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2024-10-02 10:38:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-10-09 14:04:26 +0100
commit315a4aa17c2670626781993301dd2170c50a6a25 (patch)
tree3465bc47af53048109371e9219dc657a77edb23f /documentation
parentd3160e2d2d0fd272ccd8dd7a1a652b508fe73c01 (diff)
downloadpoky-315a4aa17c2670626781993301dd2170c50a6a25.tar.gz
migration/release-notes-5.1: document oeqa/selftest envvars change
This covers the Poky commit: 61186bc98a5 (oeqa/selftest: Only rewrite envvars paths that absolutely point to builddir, 2024-09-10) (From yocto-docs rev: 59bfb63af0913ad69ae36691436af96d63dd657b) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/migration-guides/migration-5.1.rst14
-rw-r--r--documentation/migration-guides/release-notes-5.1.rst2
2 files changed, 16 insertions, 0 deletions
diff --git a/documentation/migration-guides/migration-5.1.rst b/documentation/migration-guides/migration-5.1.rst
index b43fecc2dd..298ff3e250 100644
--- a/documentation/migration-guides/migration-5.1.rst
+++ b/documentation/migration-guides/migration-5.1.rst
@@ -141,3 +141,17 @@ QEMU changes
141Miscellaneous changes 141Miscellaneous changes
142~~~~~~~~~~~~~~~~~~~~~ 142~~~~~~~~~~~~~~~~~~~~~
143 143
144- `oe-selftest` now only rewrites environment variable paths that absolutely
145 point to builddir (i.e ``X=$BUILDDIR/conf/`` is still rewritten to point to
146 the `oe-selftest` ``conf/`` directory but not ``Y=$BUILDDIR/../bitbake/`` which
147 still point to the ``bitbake/`` directory)
148
149 For example (taken from :yocto_ab:`autobuilder <>` environment):
150 :term:`BB_LOGCONFIG` is set as:
151 ``BB_LOGCONFIG="${BUILDDIR}/../bitbake/contrib/autobuilderlog.json"``.
152 Note the relative path starting from the build directory to outside of it.
153 This path is not changed by `oe-selftest` anymore.
154
155 Environment variables containing relative paths from tested build directory
156 to outside of the original build directory may need to be updated as they
157 won't be changed by `oe-selftest`.
diff --git a/documentation/migration-guides/release-notes-5.1.rst b/documentation/migration-guides/release-notes-5.1.rst
index 32cb2de2b4..c2600b07f2 100644
--- a/documentation/migration-guides/release-notes-5.1.rst
+++ b/documentation/migration-guides/release-notes-5.1.rst
@@ -26,6 +26,8 @@ New Features / Enhancements in 5.1
26 26
27- Testing: 27- Testing:
28 28
29 - oeqa/selftest: Only rewrite envvars paths that absolutely point to builddir
30
29- Utility script changes: 31- Utility script changes:
30 32
31- BitBake improvements: 33- BitBake improvements: