Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
76
sources/poky/meta/files/layers.schema.json
Normal file
76
sources/poky/meta/files/layers.schema.json
Normal file
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"description": "OpenEmbedder Layer Setup Manifest",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"version"
|
||||
],
|
||||
"properties": {
|
||||
"version": {
|
||||
"description": "The version of this document; currently '1.0'",
|
||||
"enum": ["1.0"]
|
||||
},
|
||||
"sources": {
|
||||
"description": "The dict of layer sources",
|
||||
"type": "object",
|
||||
"patternProperties": { ".*" : {
|
||||
"type": "object",
|
||||
"description": "The upstream source from which a set of layers may be fetched",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"path"
|
||||
],
|
||||
"properties": {
|
||||
"path": {
|
||||
"description": "The path where this layer source will be placed when fetching",
|
||||
"type": "string"
|
||||
},
|
||||
"contains_this_file": {
|
||||
"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"
|
||||
},
|
||||
"git-remote": {
|
||||
"description": "A remote git source from which to fetch",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"rev"
|
||||
],
|
||||
"properties": {
|
||||
"branch": {
|
||||
"description": "The git branch to fetch (optional)",
|
||||
"type": "string"
|
||||
},
|
||||
"rev": {
|
||||
"description": "The git revision to checkout",
|
||||
"type": "string"
|
||||
},
|
||||
"describe": {
|
||||
"description": "The output of 'git describe' (human readable description of the revision using tags in revision history).",
|
||||
"type": "string"
|
||||
},
|
||||
"remotes": {
|
||||
"description": "The dict of git remotes to add to this repository",
|
||||
"type": "object",
|
||||
"patternProperties": { ".*" : {
|
||||
"description": "A git remote",
|
||||
"type": "object",
|
||||
"addtionalProperties": false,
|
||||
"required": [
|
||||
"uri"
|
||||
],
|
||||
"properties": {
|
||||
"uri": {
|
||||
"description": "The URI for the remote",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user