blob: 606aac7769dfee1d89ee5093b01b125773630943 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001{
2 "config": {
3 "MACHINE" : "qemux86",
4 "DISTRO" : "poky",
5 "DL_DIR" : "${TOPDIR}/../downloads",
6 "IMAGE_FSTYPES": "ext3 jffs2 tar.bz2",
7 "IMAGE_INSTALL_append": "",
8 "PACKAGE_CLASSES": "package_rpm",
9 "SSTATE_DIR" : "${TOPDIR}/../sstate-cache"
10 },
11 "layersources": [
12 {
13 "name": "Local Yocto Project",
14 "sourcetype": "local",
15 "apiurl": "../../",
16 "branches": ["HEAD" ],
17 "layers": [
18 {
19 "name": "openembedded-core",
20 "local_path": "meta",
21 "vcs_url": "remote:origin",
22 "dirpath": "meta"
23 },
24 {
25 "name": "meta-poky",
26 "local_path": "meta-poky",
27 "vcs_url": "remote:origin",
28 "dirpath": "meta-poky"
29 },
30 {
31 "name": "meta-yocto-bsp",
32 "local_path": "meta-yocto-bsp",
33 "vcs_url": "remote:origin",
34 "dirpath": "meta-yocto-bsp"
35 }
36
37 ]
38 },
39 {
40 "name": "OpenEmbedded",
41 "sourcetype": "layerindex",
42 "apiurl": "http://layers.openembedded.org/layerindex/api/",
43 "branches": ["master", "jethro", "krogoth"]
44 },
45 {
46 "name": "Imported layers",
47 "sourcetype": "imported",
48 "apiurl": "",
49 "branches": ["master", "jethro", "krogoth", "HEAD"]
50
51 }
52 ],
53 "bitbake" : [
54 {
55 "name": "master",
56 "giturl": "remote:origin",
57 "branch": "master",
58 "dirpath": "bitbake"
59 },
60 {
61 "name": "jethro",
62 "giturl": "remote:origin",
63 "branch": "jethro",
64 "dirpath": "bitbake"
65 },
66 {
67 "name": "krogoth",
68 "giturl": "remote:origin",
69 "branch": "krogoth",
70 "dirpath": "bitbake"
71 },
72 {
73 "name": "HEAD",
74 "giturl": "remote:origin",
75 "branch": "HEAD",
76 "dirpath": "bitbake"
77 }
78 ],
79
80 "defaultrelease": "master",
81
82 "releases": [
83 {
84 "name": "master",
85 "description": "Yocto Project master",
86 "bitbake": "master",
87 "branch": "master",
88 "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"],
89 "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 },
90 "helptext": "Toaster will run your builds using the tip of 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."
91 },
92 {
93 "name": "jethro",
94 "description": "Yocto Project 2.0 Jethro",
95 "bitbake": "jethro",
96 "branch": "jethro",
97 "defaultlayers": [ "openembedded-core", "meta-yocto", "meta-yocto-bsp"],
98 "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 },
99 "helptext": "Toaster will run your builds with the tip of the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=jethro\">Yocto Project 2.0 \"Jethro\"</a> branch."
100 },
101 {
102 "name": "krogoth",
103 "description": "Yocto Project 2.1 Krogoth",
104 "bitbake": "krogoth",
105 "branch": "krogoth",
106 "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"],
107 "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 },
108 "helptext": "Toaster will run your builds with the tip of the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=krogoth\">Yocto Project 2.1 \"Krogoth\"</a> branch."
109 },
110 {
111 "name": "local",
112 "description": "Local Yocto Project",
113 "bitbake": "HEAD",
114 "branch": "HEAD",
115 "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"],
116 "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 },
117 "helptext": "Toaster will run your builds with the version of the Yocto Project you have cloned or downloaded to your computer."
118 }
119 ]
120}