diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2014-11-20 16:00:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-21 11:52:25 +0000 |
commit | 323b2d27598df8fe18892559e093ae7281e99918 (patch) | |
tree | d02cd8d53c1f1f4faf9dae97e99751d7d7f393ee /meta/conf | |
parent | 4a888b2ab61662c7f749b5d1e64af92ed613d8eb (diff) | |
download | openembedded-core-323b2d27598df8fe18892559e093ae7281e99918.tar.gz openembedded-core-323b2d27598df8fe18892559e093ae7281e99918.tar.bz2 openembedded-core-323b2d27598df8fe18892559e093ae7281e99918.zip |
toaster: add toaster layer configuration files
In managed mode, Toaster creates project configurations
based on the layers that are being checked-out on disk.
The defaults are set through a JSON configuration
file that contains layer-specific specific information.
This patch adds toasterconf.json files for the oe core layer,
that make Toaster work with a standalone OpenEmbedded-Core checkout.
The toasterconf.json files describe basic configuration for Toaster
projects, including default layers, default configuration variable values,
toaster-compatible branches, and the layerindex URL
where the base layer and compatible layers.
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/toasterconf.json | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json new file mode 100644 index 0000000000..c9835d08ae --- /dev/null +++ b/meta/conf/toasterconf.json @@ -0,0 +1,84 @@ +{ + "config": {"MACHINE": "qemux86", "DISTRO": "poky"}, + "layersources": [ + { + "name": "Local OE-Core", + "sourcetype": "local", + "apiurl": "../../", + "branches": ["HEAD", "master", "dizzy"], + "layers": [ + { + "name": "openembedded-core", + "local_path": "meta", + "vcs_url": "remote:origin", + "dirpath": "meta" + } + ] + }, + { + "name": "OpenEmbedded", + "sourcetype": "layerindex", + "apiurl": "http://layers.openembedded.org/layerindex/api/", + "branches": ["master", "dizzy"] + }, + { + "name": "User Imported Layers", + "sourcetype": "imported", + "apiurl": "", + "branches": ["master", "dizzy", "HEAD"] + + } + ], + "bitbake" : [ + { + "name": "master", + "giturl": "git://git.openembedded.org/bitbake", + "branch": "master", + "dirpath": "" + }, + { + "name": "dizzy", + "giturl": "git://git.openembedded.org/bitbake", + "branch": "1.24", + "dirpath": "" + }, + { + "name": "HEAD", + "giturl": "git://git.openembedded.org/bitbake", + "branch": "HEAD", + "dirpath": "" + } + ], + + "defaultrelease": "master", + + "releases": [ + { + "name": "master", + "description": "OE-Core master", + "bitbake": "master", + "branch": "master", + "defaultlayers": [ "openembedded-core" ], + "layersourcepriority": { "User Imported Layers": 99, "Local OE-Core" : 10, "OpenEmbedded" : 0 }, + "helptext": "Toaster will run your builds using the OpenEmbedded master branch, where active development takes place. This is not a stable branch, so your builds might not work as expected." + }, + { + "name": "dizzy", + "description": "OE-Core dizzy", + "bitbake": "dizzy", + "branch": "dizzy", + "defaultlayers": [ "openembedded-core" ], + "layersourcepriority": { "User Imported Layers": 99, "Local OE-Core" : 10, "OpenEmbedded" : 0 }, + "helptext": "Toaster will run your builds with the latest OpenEmbedded release, the dizzy branch." + }, + { + "name": "local", + "description": "Local Yocto Project", + "bitbake": "HEAD", + "branch": "HEAD", + "defaultlayers": [ "openembedded-core" ], + "layersourcepriority": { "User Imported Layers": 99, "Local OE-Core" : 10, "OpenEmbedded" : 0 }, + "helptext": "Toaster will run your builds with the version of the OpenEmbedded that you have cloned or downloaded to your computer." + } + ] +} |