@@ -1303,12 +1303,18 @@
"NEEDREPOS" : ["bitbake", "meta-mingw"],
"DISTRO" : "nodistro",
"step1" : {
- "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-poky"]
+ "EXTRACMDS" : [
+ "bitbake-layers remove-layer meta-poky meta-yocto-bsp",
+ "yocto-check-layer ../layers/openembedded-core/meta"
+ ]
},
"step2" : {
- "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-yocto-bsp"]
+ "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-poky"]
},
"step3" : {
+ "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-yocto-bsp"]
+ },
+ "step4" : {
"EXTRACMDS" : ["yocto-check-layer-wrapper ../meta-mingw"]
}
},
We need to ensure that meta-poky and meta-yocto-bsp are not in BBLAYERS when we try to run yocto-check-layer against them. We can also now run yocto-check-layer against the core meta layer. Signed-off-by: Paul Barker <paul@pbarker.dev> --- config.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-)