summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-09-01 20:37:49 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-09-02 15:54:45 +0100
commit64a774de0e154ef81f20853fec903b17d9985a72 (patch)
tree8073a2499c0dcfa73f71c03c2a2125ebb84cd67f /meta/files
parent9da0dd350a451676e3d4a1f09f90ec0234047ab7 (diff)
downloadopenembedded-core-contrib-64a774de0e154ef81f20853fec903b17d9985a72.tar.gz
meta/files/layers.schema.json: drop the layers property
This is a leftover from one of the RFC iterations, where the property contained available machines, distros and templates. As all of those were dropped from the final version, there is no reason to list the layers either anymore. Normally this would be a backwards incompatible change, but as the layer setup itself was just merged, I think we can do a quick fixup :-) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'meta/files')
-rw-r--r--meta/files/layers.example.json24
-rw-r--r--meta/files/layers.schema.json15
2 files changed, 0 insertions, 39 deletions
diff --git a/meta/files/layers.example.json b/meta/files/layers.example.json
index 3772404ec9..0a6a6a7b48 100644
--- a/meta/files/layers.example.json
+++ b/meta/files/layers.example.json
@@ -12,11 +12,6 @@
},
"rev": "05b25605fb8b2399e4706d7323828676bf0da0b5"
},
- "layers": {
- "meta-alex": {
- "subpath": ""
- }
- },
"path": "meta-alex"
},
"meta-intel": {
@@ -30,11 +25,6 @@
},
"rev": "0a96edae609a3f48befac36af82cf1eed6786b4a"
},
- "layers": {
- "meta-intel": {
- "subpath": ""
- }
- },
"path": "meta-intel"
},
"poky": {
@@ -51,20 +41,6 @@
},
"rev": "9dda719b2a4727a4d43a6ab8d9e23f8ca68790ec"
},
- "layers": {
- "meta": {
- "subpath": "meta"
- },
- "meta-poky": {
- "subpath": "meta-poky"
- },
- "meta-selftest": {
- "subpath": "meta-selftest"
- },
- "meta-yocto-bsp": {
- "subpath": "meta-yocto-bsp"
- }
- },
"path": "poky"
}
},
diff --git a/meta/files/layers.schema.json b/meta/files/layers.schema.json
index cd4ddd3dcd..659ee8da49 100644
--- a/meta/files/layers.schema.json
+++ b/meta/files/layers.schema.json
@@ -29,21 +29,6 @@
"description": "Whether the directory with the layer source also contains this json description. Tools may want to skip the checkout of the source then.",
"type": "boolean"
},
- "layers": {
- "description": "The dict of layers to be used from this upstream source",
- "type": "object",
- "patternProperties": { ".*" : {
- "description": "A layer from the upstream source",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "subpath": {
- "description": "The subpath (relative to the source root) for this layer. Omit if the source root is the layer path",
- "type": "string"
- }
- }
- }}
- },
"git-remote": {
"description": "A remote git source from which to fetch",
"type": "object",