From 151475009fe8cd105ba3964cd9c23fe7b9af11a8 Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Thu, 27 Nov 2014 16:53:35 +0000 Subject: 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 Signed-off-by: Richard Purdie --- meta/conf/toasterconf.json | 20 ++++++++++---------- 1 file 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." } ] } -- cgit 1.2.3-korg