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

(From OE-Core rev: 151475009fe8cd105ba3964cd9c23fe7b9af11a8)

Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Belen Barros Pena 2014-11-27 16:53:35 +00:00 committed by Richard Purdie
parent 99262b6b73
commit e2cf2d1fc5
1 changed files with 10 additions and 10 deletions

View File

@ -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."
}
]
}