From: Richard Purdie Date: Fri, 7 Nov 2025 08:00:56 +0000 (+0100) Subject: meta/files/bitbake-setup.schema.json: correct bb-layers definitions X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git meta/files/bitbake-setup.schema.json: correct bb-layers definitions - improve bb-layers property description - add bb-layers-file-relative property The rationale is that both properties are relative to their respective directories and that should be documented and clear from their names (without being too verbose). Based on a patch from Alexander Kanavin but with updated naming. Signed-off-by: Richard Purdie --- diff --git a/meta/files/bitbake-setup.schema.json b/meta/files/bitbake-setup.schema.json index 5101b0de53..7030f1d6d5 100644 --- a/meta/files/bitbake-setup.schema.json +++ b/meta/files/bitbake-setup.schema.json @@ -39,7 +39,14 @@ }, "bb-layers": { "type": "array", - "description": "List of BitBake layers to include", + "description": "List of BitBake layer paths to include, relative to the layers download directory", + "items": { + "type": "string" + } + }, + "bb-layers-file-relative": { + "type": "array", + "description": "List of BitBake layers paths to include, relative to the directory with the configuration file", "items": { "type": "string" }