summaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-11-20 16:03:30 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-21 11:49:24 +0000
commitae7c1e57a6f5135dc6e8bd5f96ab1dfcb4420409 (patch)
tree6aecf39c844a21d8fd658f02011c9a59b21db2fb /meta-yocto
parent39bace01e20ea194a0fb5326ac72dd6896483f41 (diff)
downloadpoky-ae7c1e57a6f5135dc6e8bd5f96ab1dfcb4420409.tar.gz
toaster: add toaster layer configuration files for meta-yocto
In managed mode, Toaster tries to create project configuration based on the layers that are being checked-out on disk. This is done by using a JSON configuration file that is layer-specific. This patch adds toasterconf.json files to the meta-yocto layer, allowing Toaster projects based on Yocto Project releases. (From meta-yocto rev: 3011da795a1c208438424e064cd5f77a21b6a87a) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/toasterconf.json97
1 files changed, 97 insertions, 0 deletions
diff --git a/meta-yocto/conf/toasterconf.json b/meta-yocto/conf/toasterconf.json
new file mode 100644
index 0000000000..fa333de66b
--- /dev/null
+++ b/meta-yocto/conf/toasterconf.json
@@ -0,0 +1,97 @@
1{
2 "config": {"MACHINE": "qemux86", "DISTRO": "poky"},
3 "layersources": [
4 {
5 "name": "Local Poky",
6 "sourcetype": "local",
7 "apiurl": "../../",
8 "branches": ["HEAD", "master", "dizzy"],
9 "layers": [
10 {
11 "name": "openembedded-core",
12 "local_path": "meta",
13 "vcs_url": "remote:origin",
14 "dirpath": "meta"
15 },
16 {
17 "name": "meta-yocto",
18 "local_path": "meta",
19 "vcs_url": "remote:origin",
20 "dirpath": "meta-yocto"
21 },
22 {
23 "name": "meta-yocto-bsp",
24 "local_path": "meta",
25 "vcs_url": "remote:origin",
26 "dirpath": "meta-yocto-bsp"
27 }
28
29 ]
30 },
31 {
32 "name": "OpenEmbedded",
33 "sourcetype": "layerindex",
34 "apiurl": "http://layers.openembedded.org/layerindex/api/",
35 "branches": ["master", "dizzy"]
36 },
37 {
38 "name": "User Imported Layers",
39 "sourcetype": "imported",
40 "apiurl": "",
41 "branches": ["master", "dizzy", "HEAD"]
42
43 }
44 ],
45 "bitbake" : [
46 {
47 "name": "master",
48 "giturl": "remote:origin",
49 "branch": "master",
50 "dirpath": "bitbake"
51 },
52 {
53 "name": "dizzy",
54 "giturl": "remote:origin",
55 "branch": "dizzy",
56 "dirpath": "bitbake"
57 },
58 {
59 "name": "HEAD",
60 "giturl": "remote:origin",
61 "branch": "HEAD",
62 "dirpath": "bitbake"
63 }
64 ],
65
66 "defaultrelease": "master",
67
68 "releases": [
69 {
70 "name": "master",
71 "description": "Yocto Project master",
72 "bitbake": "master",
73 "branch": "master",
74 "defaultlayers": [ "openembedded-core", "meta-yocto", "meta-yocto-bsp"],
75 "layersourcepriority": { "User Imported Layers": 99, "Local Poky" : 10, "OpenEmbedded" : 0 },
76 "helptext": "Toaster will run your builds using the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/\">Yocto Project master branch</a>, where active development takes place. This is not a stable branch, so your builds might not work as expected."
77 },
78 {
79 "name": "dizzy",
80 "description": "Yocto Project 1.7 Dizzy",
81 "bitbake": "dizzy",
82 "branch": "dizzy",
83 "defaultlayers": [ "openembedded-core", "meta-yocto", "meta-yocto-bsp"],
84 "layersourcepriority": { "User Imported Layers": 99, "Local Poky" : 10, "OpenEmbedded" : 0 },
85 "helptext": "Toaster will run your builds with the latest Yocto Project release, <a href=\"https://www.yoctoproject.org/downloads/core/dizzy17\">1.7 \"Dizzy\"</a>"
86 },
87 {
88 "name": "local",
89 "description": "Local Yocto Project",
90 "bitbake": "HEAD",
91 "branch": "HEAD",
92 "defaultlayers": [ "openembedded-core", "meta-yocto", "meta-yocto-bsp"],
93 "layersourcepriority": { "User Imported Layers": 99, "Local Poky" : 10, "OpenEmbedded" : 0 },
94 "helptext": "Toaster will run your builds with the version of the Yocto Project you have cloned or downloaded to your computer."
95 }
96 ]
97}