summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2025-10-08 14:42:53 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-10-08 13:55:27 +0100
commit3c1ef0d520273835f89981bb336ce9dd6e23b9fd (patch)
tree14eecd4dfe752cda5a210fd7b53744984ca78af3
parent9ef953f10d9f83b69bd3187f0690f8b758119ba4 (diff)
downloadpoky-3c1ef0d520273835f89981bb336ce9dd6e23b9fd.tar.gz
selftest/bblayers: maintain compatibility with integrated poky repo
This amends the recently merged commit that assumes the transition to separate repositories has already happened and re-instatates support for integrated poky. (From OE-Core rev: 517666671ba2cc79b2ada3390d4ae0f2beb95caf) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/bblayers.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bblayers.py b/meta/lib/oeqa/selftest/cases/bblayers.py
index 08bc1d1e44..8026e7ed4a 100644
--- a/meta/lib/oeqa/selftest/cases/bblayers.py
+++ b/meta/lib/oeqa/selftest/cases/bblayers.py
@@ -157,7 +157,9 @@ class BitbakeLayers(OESelftestTestCase):
157 with open(jsonfile) as f: 157 with open(jsonfile) as f:
158 data = json.load(f) 158 data = json.load(f)
159 for s in data['sources']: 159 for s in data['sources']:
160 if s == 'meta-yocto': 160 if s == 'poky':
161 data['sources'][s]['git-remote']['rev'] = '5200799866b92259e855051112520006e1aaaac0'
162 elif s == 'meta-yocto':
161 data['sources'][s]['git-remote']['rev'] = '913bd8ba4dd1d5d2a38261bde985b64a36e36281' 163 data['sources'][s]['git-remote']['rev'] = '913bd8ba4dd1d5d2a38261bde985b64a36e36281'
162 else: 164 else:
163 data['sources'][s]['git-remote']['rev'] = '744a2277844ec9a384a9ca7dae2a634d5a0d3590' 165 data['sources'][s]['git-remote']['rev'] = '744a2277844ec9a384a9ca7dae2a634d5a0d3590'