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:58:26 +0100
commit2bdc042d9c782ce87c4bc70c4b04eacfaec549d4 (patch)
tree58a2ab1eeb66084c1991bcf5b83af542386ec82b /meta/files
parentbfa02f71d86880781afb9e985b823c3add459162 (diff)
downloadpoky-2bdc042d9c782ce87c4bc70c4b04eacfaec549d4.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 :-) (From OE-Core rev: 64a774de0e154ef81f20853fec903b17d9985a72) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 @@
12 }, 12 },
13 "rev": "05b25605fb8b2399e4706d7323828676bf0da0b5" 13 "rev": "05b25605fb8b2399e4706d7323828676bf0da0b5"
14 }, 14 },
15 "layers": {
16 "meta-alex": {
17 "subpath": ""
18 }
19 },
20 "path": "meta-alex" 15 "path": "meta-alex"
21 }, 16 },
22 "meta-intel": { 17 "meta-intel": {
@@ -30,11 +25,6 @@
30 }, 25 },
31 "rev": "0a96edae609a3f48befac36af82cf1eed6786b4a" 26 "rev": "0a96edae609a3f48befac36af82cf1eed6786b4a"
32 }, 27 },
33 "layers": {
34 "meta-intel": {
35 "subpath": ""
36 }
37 },
38 "path": "meta-intel" 28 "path": "meta-intel"
39 }, 29 },
40 "poky": { 30 "poky": {
@@ -51,20 +41,6 @@
51 }, 41 },
52 "rev": "9dda719b2a4727a4d43a6ab8d9e23f8ca68790ec" 42 "rev": "9dda719b2a4727a4d43a6ab8d9e23f8ca68790ec"
53 }, 43 },
54 "layers": {
55 "meta": {
56 "subpath": "meta"
57 },
58 "meta-poky": {
59 "subpath": "meta-poky"
60 },
61 "meta-selftest": {
62 "subpath": "meta-selftest"
63 },
64 "meta-yocto-bsp": {
65 "subpath": "meta-yocto-bsp"
66 }
67 },
68 "path": "poky" 44 "path": "poky"
69 } 45 }
70 }, 46 },
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 @@
29 "description": "Whether the directory with the layer source also contains this json description. Tools may want to skip the checkout of the source then.", 29 "description": "Whether the directory with the layer source also contains this json description. Tools may want to skip the checkout of the source then.",
30 "type": "boolean" 30 "type": "boolean"
31 }, 31 },
32 "layers": {
33 "description": "The dict of layers to be used from this upstream source",
34 "type": "object",
35 "patternProperties": { ".*" : {
36 "description": "A layer from the upstream source",
37 "type": "object",
38 "additionalProperties": false,
39 "properties": {
40 "subpath": {
41 "description": "The subpath (relative to the source root) for this layer. Omit if the source root is the layer path",
42 "type": "string"
43 }
44 }
45 }}
46 },
47 "git-remote": { 32 "git-remote": {
48 "description": "A remote git source from which to fetch", 33 "description": "A remote git source from which to fetch",
49 "type": "object", 34 "type": "object",