diff options
| author | Alexander Kanavin <alex@linutronix.de> | 2025-10-06 13:34:17 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-06 23:15:59 +0100 |
| commit | 0254b4590a5bfc6f328b2e14d210b63a811fd97f (patch) | |
| tree | 132f1462f07af7f73ca41bdbb716736004300e6b | |
| parent | e9acea56bd30ca48298ec0cfaca1b16346b08cfb (diff) | |
| download | poky-0254b4590a5bfc6f328b2e14d210b63a811fd97f.tar.gz | |
selftest/bblayers: do not assume integrated poky repo
The autobuilder is being transitioned to bitbake-setup which
sets up individual repositories that yocto is made of. Adjust
hardcoded revisions to match these repositories.
(From OE-Core rev: d22744cc176524e83cc52d0800ce39b0070e261c)
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.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bblayers.py b/meta/lib/oeqa/selftest/cases/bblayers.py index 7eb176aa04..08bc1d1e44 100644 --- a/meta/lib/oeqa/selftest/cases/bblayers.py +++ b/meta/lib/oeqa/selftest/cases/bblayers.py | |||
| @@ -157,7 +157,10 @@ 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 | data['sources'][s]['git-remote']['rev'] = '5200799866b92259e855051112520006e1aaaac0' | 160 | if s == 'meta-yocto': |
| 161 | data['sources'][s]['git-remote']['rev'] = '913bd8ba4dd1d5d2a38261bde985b64a36e36281' | ||
| 162 | else: | ||
| 163 | data['sources'][s]['git-remote']['rev'] = '744a2277844ec9a384a9ca7dae2a634d5a0d3590' | ||
| 161 | with open(jsonfile, 'w') as f: | 164 | with open(jsonfile, 'w') as f: |
| 162 | json.dump(data, f) | 165 | json.dump(data, f) |
| 163 | 166 | ||
