diff options
| -rw-r--r-- | meta-yocto/conf/toasterconf.json | 97 |
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 | } | ||
