diff options
| author | Michael Wood <michael.g.wood@intel.com> | 2016-11-23 12:26:44 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-08 10:35:08 +0000 |
| commit | 13901d22a7ac13c56772d246619896fa4615f71a (patch) | |
| tree | eea6970b447cb863316b8409a87a1fcb1239ce35 | |
| parent | 748b1c2681ab690040f632a1693c48851d1642c7 (diff) | |
| download | poky-13901d22a7ac13c56772d246619896fa4615f71a.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 meta-yocto rev: eea72a2d34924f90f7ff5ddf07181c8a331b643b)
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>
| -rw-r--r-- | meta-poky/conf/toasterconf.json | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/meta-poky/conf/toasterconf.json b/meta-poky/conf/toasterconf.json deleted file mode 100644 index 93fb9291f9..0000000000 --- a/meta-poky/conf/toasterconf.json +++ /dev/null | |||
| @@ -1,90 +0,0 @@ | |||
| 1 | { | ||
| 2 | "config": { | ||
| 3 | "MACHINE" : "qemux86", | ||
| 4 | "DISTRO" : "poky", | ||
| 5 | "DL_DIR" : "${TOPDIR}/../downloads", | ||
| 6 | "IMAGE_FSTYPES": "ext3 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 Yocto Project", | ||
| 14 | "sourcetype": "local", | ||
| 15 | "apiurl": "../../", | ||
| 16 | "branches": ["HEAD" ], | ||
| 17 | "layers": [ | ||
| 18 | { | ||
| 19 | "name": "openembedded-core", | ||
| 20 | "local_path": "meta", | ||
| 21 | "vcs_url": "remote:origin", | ||
| 22 | "dirpath": "meta" | ||
| 23 | }, | ||
| 24 | { | ||
| 25 | "name": "meta-poky", | ||
| 26 | "local_path": "meta-poky", | ||
| 27 | "vcs_url": "remote:origin", | ||
| 28 | "dirpath": "meta-poky" | ||
| 29 | }, | ||
| 30 | { | ||
| 31 | "name": "meta-yocto-bsp", | ||
| 32 | "local_path": "meta-yocto-bsp", | ||
| 33 | "vcs_url": "remote:origin", | ||
| 34 | "dirpath": "meta-yocto-bsp" | ||
| 35 | } | ||
| 36 | |||
| 37 | ] | ||
| 38 | }, | ||
| 39 | { | ||
| 40 | "name": "OpenEmbedded", | ||
| 41 | "sourcetype": "layerindex", | ||
| 42 | "apiurl": "http://layers.openembedded.org/layerindex/api/", | ||
| 43 | "branches": ["master"] | ||
| 44 | }, | ||
| 45 | { | ||
| 46 | "name": "Imported layers", | ||
| 47 | "sourcetype": "imported", | ||
| 48 | "apiurl": "", | ||
| 49 | "branches": ["master", "HEAD"] | ||
| 50 | |||
| 51 | } | ||
| 52 | ], | ||
| 53 | "bitbake" : [ | ||
| 54 | { | ||
| 55 | "name": "master", | ||
| 56 | "giturl": "remote:origin", | ||
| 57 | "branch": "master", | ||
| 58 | "dirpath": "bitbake" | ||
| 59 | }, | ||
| 60 | { | ||
| 61 | "name": "HEAD", | ||
| 62 | "giturl": "remote:origin", | ||
| 63 | "branch": "HEAD", | ||
| 64 | "dirpath": "bitbake" | ||
| 65 | } | ||
| 66 | ], | ||
| 67 | |||
| 68 | "defaultrelease": "master", | ||
| 69 | |||
| 70 | "releases": [ | ||
| 71 | { | ||
| 72 | "name": "master", | ||
| 73 | "description": "Yocto Project master", | ||
| 74 | "bitbake": "master", | ||
| 75 | "branch": "master", | ||
| 76 | "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"], | ||
| 77 | "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 }, | ||
| 78 | "helptext": "Toaster will run your builds using the tip of the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/\">Yocto Project master branch</a>, where active development takes place. This is not a stable branch, so your builds might not work as expected." | ||
| 79 | }, | ||
| 80 | { | ||
| 81 | "name": "local", | ||
| 82 | "description": "Local Yocto Project", | ||
| 83 | "bitbake": "HEAD", | ||
| 84 | "branch": "HEAD", | ||
| 85 | "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"], | ||
| 86 | "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" : 0 }, | ||
| 87 | "helptext": "Toaster will run your builds with the version of the Yocto Project you have cloned or downloaded to your computer." | ||
| 88 | } | ||
| 89 | ] | ||
| 90 | } | ||
