diff options
author | Alexander Kanavin <alex@linutronix.de> | 2025-01-08 12:25:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-09 16:59:23 +0000 |
commit | 70a650c26a5f310d795284ac0c33d884d3603dfd (patch) | |
tree | acfa3451ba5357986a2b153965bf88282ddef27c /meta-selftest | |
parent | 2d267c418fc9f95206f9f0560b905efcc7b51800 (diff) | |
download | poky-70a650c26a5f310d795284ac0c33d884d3603dfd.tar.gz |
bbconfigbuild/configfragments.py: set BBPATH in standalone datastore
Otherwise fragments with 'require' statements will not parse,
as the parser will not be able to find files referred to by
those statements.
Add such a statement to the test fragment so that the scenario
is tested.
[YOCTO #15707]
(From OE-Core rev: d88e63d1a7867b3a4ebfc57d472900136b5361d8)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/conf/fragments/test-fragment.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-selftest/conf/fragments/test-fragment.conf b/meta-selftest/conf/fragments/test-fragment.conf index 4c1d240945..82dd353767 100644 --- a/meta-selftest/conf/fragments/test-fragment.conf +++ b/meta-selftest/conf/fragments/test-fragment.conf | |||
@@ -1,3 +1,5 @@ | |||
1 | BB_CONF_FRAGMENT_SUMMARY = "This is a configuration fragment intended for testing in oe-selftest context" | 1 | BB_CONF_FRAGMENT_SUMMARY = "This is a configuration fragment intended for testing in oe-selftest context" |
2 | BB_CONF_FRAGMENT_DESCRIPTION = "It defines a variable that can be checked inside the test." | 2 | BB_CONF_FRAGMENT_DESCRIPTION = "It defines a variable that can be checked inside the test." |
3 | |||
3 | SELFTEST_FRAGMENT_VARIABLE = "somevalue" | 4 | SELFTEST_FRAGMENT_VARIABLE = "somevalue" |
5 | require conf/multilib.conf | ||