diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2014-11-27 16:53:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-28 13:58:53 +0000 |
commit | 151475009fe8cd105ba3964cd9c23fe7b9af11a8 (patch) | |
tree | 06e09db5522bcbbff127908619a9ff29578e7b50 /meta | |
parent | ff2ff155ea5273b2023a1c9834b13f10249d343f (diff) | |
download | openembedded-core-151475009fe8cd105ba3964cd9c23fe7b9af11a8.tar.gz openembedded-core-151475009fe8cd105ba3964cd9c23fe7b9af11a8.tar.bz2 openembedded-core-151475009fe8cd105ba3964cd9c23fe7b9af11a8.zip |
toaster: naming and description changes
Some minor changes to the names and descriptions
used in the Toaster configuration file:
* Change the name of the local layer source from Local OE-Core
to Local OpenEmbedded
* Change the imported layer source name from User Imported Layers
to just Imported layers. It is shorter, which helps table display
* Change the description of the master release from OE-Core
master to OpenEmbedded master
* Change the description of the dizzy release from OE-Core dizzy
to OpenEmbedded Dizzy
* Change the helptext of the dizzy release to remove the
"latest" reference, which can make maintenance hard
* Change the name of the Local Yocto Project release to Local
OpenEmbedded
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/toasterconf.json | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json index c9835d08ae..fe1564ec26 100644 --- a/meta/conf/toasterconf.json +++ b/meta/conf/toasterconf.json @@ -2,7 +2,7 @@ "config": {"MACHINE": "qemux86", "DISTRO": "poky"}, "layersources": [ { - "name": "Local OE-Core", + "name": "Local OpenEmbedded", "sourcetype": "local", "apiurl": "../../", "branches": ["HEAD", "master", "dizzy"], @@ -22,7 +22,7 @@ "branches": ["master", "dizzy"] }, { - "name": "User Imported Layers", + "name": "Imported layers", "sourcetype": "imported", "apiurl": "", "branches": ["master", "dizzy", "HEAD"] @@ -55,30 +55,30 @@ "releases": [ { "name": "master", - "description": "OE-Core master", + "description": "OpenEmbedded master", "bitbake": "master", "branch": "master", "defaultlayers": [ "openembedded-core" ], - "layersourcepriority": { "User Imported Layers": 99, "Local OE-Core" : 10, "OpenEmbedded" : 0 }, + "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 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", + "description": "OpenEmbedded 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." + "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 10, "OpenEmbedded" : 0 }, + "helptext": "Toaster will run your builds with the OpenEmbedded Dizzy release" }, { "name": "local", - "description": "Local Yocto Project", + "description": "Local OpenEmbedded", "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." + "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 10, "OpenEmbedded" : 0 }, + "helptext": "Toaster will run your builds with the version of OpenEmbedded that you have cloned or downloaded to your computer." } ] } |