summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-11-23 12:24:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-30 15:48:06 +0000
commit0e503bc5b2991b945c282152eb700e9dd1d47366 (patch)
tree5560ae51533c8519fe4f4a67157ea55b1cf6ea5b /meta/conf
parent7af36a74d74c0ba32d6aa866749a20310b9d3587 (diff)
downloadpoky-0e503bc5b2991b945c282152eb700e9dd1d47366.tar.gz
conf: Remove redundant toasterconf.json file
We no longer use this file to start toaster. Toaster's configuration is setup by Toaster itself using the standard Django data fixtures. (From OE-Core rev: 2db008e1c1d6ce81d4a266c7671e4135ff250e63) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/toasterconf.json77
1 files changed, 0 insertions, 77 deletions
diff --git a/meta/conf/toasterconf.json b/meta/conf/toasterconf.json
deleted file mode 100644
index 796125bbfd..0000000000
--- a/meta/conf/toasterconf.json
+++ /dev/null
@@ -1,77 +0,0 @@
1{
2 "config": {
3 "MACHINE" : "qemux86",
4 "DISTRO" : "nodistro",
5 "DL_DIR" : "${TOPDIR}/../downloads",
6 "IMAGE_FSTYPES": "ext4 jffs2 tar.bz2",
7 "IMAGE_INSTALL_append": "",
8 "PACKAGE_CLASSES": "package_rpm",
9 "SSTATE_DIR" : "${TOPDIR}/../sstate-cache"
10 },
11 "layersources": [
12 {
13 "name": "Local OpenEmbedded",
14 "sourcetype": "local",
15 "apiurl": "../../",
16 "branches": ["HEAD", "master"],
17 "layers": [
18 {
19 "name": "openembedded-core",
20 "local_path": "meta",
21 "vcs_url": "remote:origin",
22 "dirpath": "meta"
23 }
24 ]
25 },
26 {
27 "name": "OpenEmbedded",
28 "sourcetype": "layerindex",
29 "apiurl": "http://layers.openembedded.org/layerindex/api/",
30 "branches": ["master"]
31 },
32 {
33 "name": "Imported layers",
34 "sourcetype": "imported",
35 "apiurl": "",
36 "branches": ["master", "HEAD"]
37
38 }
39 ],
40 "bitbake" : [
41 {
42 "name": "master",
43 "giturl": "git://git.openembedded.org/bitbake",
44 "branch": "master",
45 "dirpath": ""
46 },
47 {
48 "name": "HEAD",
49 "giturl": "git://git.openembedded.org/bitbake",
50 "branch": "HEAD",
51 "dirpath": ""
52 }
53 ],
54
55 "defaultrelease": "master",
56
57 "releases": [
58 {
59 "name": "master",
60 "description": "OpenEmbedded master",
61 "bitbake": "master",
62 "branch": "master",
63 "defaultlayers": [ "openembedded-core" ],
64 "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 10, "OpenEmbedded" : 0 },
65 "helptext": "Toaster will run your builds using the tip of the <a href=\"http://cgit.openembedded.org/openembedded-core/log/\">OpenEmbedded master</a> branch, where active development takes place. This is not a stable branch, so your builds might not work as expected."
66 },
67 {
68 "name": "local",
69 "description": "Local OpenEmbedded",
70 "bitbake": "HEAD",
71 "branch": "HEAD",
72 "defaultlayers": [ "openembedded-core" ],
73 "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 10, "OpenEmbedded" : 0 },
74 "helptext": "Toaster will run your builds with the version of OpenEmbedded that you have cloned or downloaded to your computer."
75 }
76 ]
77}