Home
last modified time | relevance | path

Searched refs:layer (Results 1 – 25 of 554) sorted by relevance

12345678910>>...23

/openbmc/openbmc/poky/scripts/
H A Dyocto-check-layer35 def test_layer(td, layer, test_software_layer_signatures): argument
37 logger.info("Starting to analyze: %s" % layer['name'])
40 …tc = CheckLayerTestContext(td=td, logger=logger, layer=layer, test_software_layer_signatures=test_…
44 def dump_layer_debug(layer): argument
45 logger.debug("Found layer %s (%s)" % (layer["name"], layer["path"]))
46 collections = layer.get("collections", {})
48 logger.debug("%s collections: %s" % (layer["name"], ", ".join(collections)))
127 for layer in layers:
128 if layer['type'] == LayerType.ERROR_BSP_DISTRO:
131 % layer['name'])
[all …]
/openbmc/openbmc/meta-openembedded/meta-xfce/conf/
H A Dlayer.conf8 BBFILE_PATTERN_xfce-layer := "^${LAYERDIR}/"
9 BBFILE_PRIORITY_xfce-layer = "5"
13 LAYERVERSION_xfce-layer = "1"
15 LAYERDEPENDS_xfce-layer = "core"
16 LAYERDEPENDS_xfce-layer += "openembedded-layer"
17 LAYERDEPENDS_xfce-layer += "gnome-layer"
18 LAYERDEPENDS_xfce-layer += "multimedia-layer"
19 LAYERDEPENDS_xfce-layer += "meta-python"
20 LAYERDEPENDS_xfce-layer += "networking-layer"
22 LAYERSERIES_COMPAT_xfce-layer = "walnascar whinlatter"
/openbmc/openbmc/poky/scripts/lib/checklayer/
H A D__init__.py83 layer = {}
86 layer['name'] = layer_name
87 layer['path'] = layer_path
88 layer['conf'] = {}
91 layer['type'] = LayerType.ERROR_NO_LAYER_CONF
92 return layer
110 layer['collections'] = _get_layer_collections(layer['path'])
112 if layer_name == "meta" and "core" in layer['collections']:
113 layer['type'] = LayerType.CORE
114 layer['conf']['machines'] = machines
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dlayerappend.py61 layer = os.path.join(corebase, "meta-layertest" + l)
62 self.assertFalse(os.path.exists(layer))
63 os.mkdir(layer)
64 os.mkdir(layer + "/conf")
65 with open(layer + "/conf/layer.conf", "w") as f:
67 os.mkdir(layer + "/recipes-test")
69 with open(layer + "/recipes-test/layerappendtest.bb", "w") as f:
72 with open(layer + "/recipes-test/layerappendtest.bbappend", "w") as f:
74 os.mkdir(layer + "/recipes-test/layerappendtest")
75 with open(layer + "/recipes-test/layerappendtest/appendtest.txt", "w") as f:
[all …]
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/testdata/layer2/conf/
H A Dlayer.conf9 BBFILE_PATTERN_networking-layer := "^${LAYERDIR}/"
10 BBFILE_PRIORITY_networking-layer = "5"
14 LAYERVERSION_networking-layer = "1"
16 LAYERDEPENDS_networking-layer = "core"
17 LAYERDEPENDS_networking-layer += "openembedded-layer"
18 LAYERDEPENDS_networking-layer += "meta-python"
20 LAYERSERIES_COMPAT_networking-layer = "sumo"
/openbmc/openbmc/meta-phosphor/conf/
H A Dlayer.conf9 BBFILE_PATTERN_phosphor-layer := "^${LAYERDIR}/"
10 LAYERVERSION_phosphor-layer = "1"
11 LAYERDEPENDS_phosphor-layer = "core"
12 LAYERDEPENDS_phosphor-layer += "openembedded-layer"
13 LAYERDEPENDS_phosphor-layer += "meta-python"
14 LAYERDEPENDS_phosphor-layer += "networking-layer"
15 LAYERSERIES_COMPAT_phosphor-layer = "whinlatter walnascar"
/openbmc/openbmc/meta-security/meta-parsec/conf/
H A Dlayer.conf8 BBFILE_PATTERN_parsec-layer = "^${LAYERDIR}/"
9 BBFILE_PRIORITY_parsec-layer = "5"
11 LAYERSERIES_COMPAT_parsec-layer = "walnascar styhead nanbield scarthgap"
13 LAYERDEPENDS_parsec-layer = "core clang-layer"
14 BBLAYERS_LAYERINDEX_NAME_parsec-layer = "meta-parsec"
18 WARN_QA:append:parsec-layer = " patch-status missing-metadata"
/openbmc/openbmc/meta-security/meta-tpm/conf/
H A Dlayer.conf8 BBFILE_PATTERN_tpm-layer = "^${LAYERDIR}/"
9 BBFILE_PRIORITY_tpm-layer = "6"
11 LAYERSERIES_COMPAT_tpm-layer = "styhead walnascar"
13 LAYERDEPENDS_tpm-layer = " \
18 BBLAYERS_LAYERINDEX_NAME_tpm-layer = "meta-tpm"
30 WARN_QA:append:tmp-layer = " patch-status missing-metadata"
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dlayers.rst11 ":ref:`overview-manual/yp-intro:the yocto project layer model`"
23 layer-creation tools, see the
24 ":ref:`bsp-guide/bsp:creating a new bsp layer using the \`\`bitbake-layers\`\` script`"
26 …Guide and the ":ref:`dev-manual/layers:creating a general layer using the \`\`bitbake-layers\`\` s…
29 Follow these general steps to create your layer without using tools:
31 #. *Check Existing Layers:* Before creating a new layer, you should be
32 sure someone has not already created a layer containing the Metadata
35 the Yocto Project. You could find a layer that is identical or close
38 #. *Create a Directory:* Create the directory for your layer. When you
39 create the layer, be sure to create the directory in an area not
[all …]
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dcommon.py15 if self.tc.layer['type'] == LayerType.CORE:
19 readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*'))
49 directories = [self.tc.layer["path"]]
66 if self.tc.layer["type"] == LayerType.CORE:
76 check_command('Layer %s failed to parse.' % self.tc.layer['name'],
80 check_command('Layer %s failed to show environment.' % self.tc.layer['name'],
104 self.tc.layer['name'])
112 for dirpath, dirs, files in os.walk(self.tc.layer['path']):
122 if self.tc.layer['type'] == LayerType.SOFTWARE and \
125 % self.tc.layer['name'])
[all …]
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/testdata/layer4/conf/
H A Dlayer.conf8 BBFILE_PATTERN_openembedded-layer := "^${LAYERDIR}/"
14 BBFILE_PRIORITY_openembedded-layer = "6"
18 LAYERVERSION_openembedded-layer = "1"
20 LAYERDEPENDS_openembedded-layer = "core"
22 LAYERSERIES_COMPAT_openembedded-layer = "sumo"
/openbmc/openbmc/meta-openembedded/meta-perl/conf/
H A Dlayer.conf9 BBFILE_PATTERN_perl-layer := "^${LAYERDIR}/"
10 BBFILE_PRIORITY_perl-layer = "5"
14 LAYERVERSION_perl-layer = "1"
16 LAYERDEPENDS_perl-layer = "core openembedded-layer"
18 LAYERSERIES_COMPAT_perl-layer = "walnascar whinlatter"
/openbmc/openbmc/meta-openembedded/meta-filesystems/conf/
H A Dlayer.conf9 BBFILE_PATTERN_filesystems-layer = "^${LAYERDIR}/"
10 BBFILE_PRIORITY_filesystems-layer = "5"
14 LAYERVERSION_filesystems-layer = "1"
16 LAYERDEPENDS_filesystems-layer = "core openembedded-layer networking-layer"
18 LAYERSERIES_COMPAT_filesystems-layer = "walnascar whinlatter"
/openbmc/openbmc/meta-security/meta-hardening/conf/
H A Dlayer.conf8 BBFILE_PATTERN_harden-layer = "^${LAYERDIR}/"
9 BBFILE_PRIORITY_harden-layer = "6"
11 LAYERSERIES_COMPAT_harden-layer = "styhead walnascar"
13 LAYERDEPENDS_harden-layer = "core openembedded-layer"
15 WARN_QA:append:harden-layer = " patch-status missing-metadata"
/openbmc/openbmc/meta-openembedded/meta-multimedia/conf/
H A Dlayer.conf18 BBFILE_PATTERN_multimedia-layer := "^${LAYERDIR}/"
26 BBFILE_PRIORITY_multimedia-layer = "5"
30 LAYERVERSION_multimedia-layer = "1"
32 LAYERDEPENDS_multimedia-layer = "core openembedded-layer meta-python"
34 LAYERSERIES_COMPAT_multimedia-layer = "walnascar whinlatter"
/openbmc/openbmc/meta-openembedded/meta-networking/conf/
H A Dlayer.conf9 BBFILE_PATTERN_networking-layer := "^${LAYERDIR}/"
10 BBFILE_PRIORITY_networking-layer = "5"
14 LAYERVERSION_networking-layer = "1"
16 LAYERDEPENDS_networking-layer = "core meta-python openembedded-layer"
18 LAYERSERIES_COMPAT_networking-layer = "walnascar whinlatter"
/openbmc/openbmc/meta-openembedded/meta-gnome/conf/
H A Dlayer.conf8 BBFILE_PATTERN_gnome-layer := "^${LAYERDIR}/"
9 BBFILE_PRIORITY_gnome-layer = "5"
16 LAYERVERSION_gnome-layer = "1"
18 LAYERDEPENDS_gnome-layer = "core openembedded-layer networking-layer meta-python"
20 LAYERSERIES_COMPAT_gnome-layer = "walnascar whinlatter"
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dapi.py235 def scan_layer_content(layer,layer_version): argument
237 if os.path.isdir(layer.local_source_dir):
240 recipes_list = glob.glob(os.path.join(layer.local_source_dir, 'recipes-*/*/*.bb'))
255 ro.summary = 'Recipe %s from layer %s' % (recipe_name,layer.name)
292 'name': layer_version.layer.name,
296 'vcs_url': layer_version.layer.vcs_url,
297 'local_source_dir': layer_version.layer.local_source_dir,
302 "name": dep.layer.name,
305 "vcs_url": dep.layer.vcs_url,
347 layer_version.layer.vcs_url = request.POST["vcs_url"]
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dimportlayer.js52 function(layer) { argument
53 if (layer.results.length > 0) {
54 currentLayerDepSelection = layer.results[0];
125 var layer = layerDeps[key].deps[dep];
126 depDeps[layer.id] = layer;
139 var layer = { name: layerNameInput.val(), url: "#", id: -1 }; class in AnonymousFunction1aaebdcb0c00
141 var body = "<strong>"+layer.name+"</strong>'s dependencies ("+
144 showLayerDepsModal(layer,
276 function layerExistsError(layer){ argument
279 if (layer.local_source_dir) {
[all …]
/openbmc/openbmc/meta-evb/
H A DREADME.md4 This is the OpenBMC Evaluation Board (EVB) layer. The boards in the EVB layer
6 layer](https://github.com/openbmc/openbmc/tree/master/)
8 should not be any EVB layers in a system's bblayers.conf, the BSP layer should
9 be used instead. Boards might be found be in both the EVB layer and the BSP
10 layer.
/openbmc/openbmc/meta-security/
H A DREADME.md9 The bbappend files for some recipes (e.g. linux-yocto) in this layer need
18 You have included the meta-security layer, but
27 This layer provides security tools, hardening tools for Linux kernels
33 This layer depends on:
36 branch: [same one as checked out for this layer]
39 branch: [same one as checked out for this layer]
41 Adding the security layer to your build
44 In order to use this layer, you need to make the build system aware of
47 Assuming the security layer exists at the top-level of your
49 location of the security layer to bblayers.conf, along with any
[all …]
/openbmc/openbmc/meta-google/
H A DREADME1 This README file contains information on the contents of the meta-google layer.
9 This layer depends on:
17 Please submit any patches against the meta-google layer to the OpenBMC gerrit https://gerrit.openbm…
26 I. Adding the filesystems layer to your build
31 I. Adding the meta-google layer to your build
34 In order to use this layer, you need to make the build system aware of
37 Assuming the meta-google layer exists at the top-level of your
39 location of the meta-google layer to bblayers.conf, along with any
51 Including this layer adds the following packages to your obmc-phosphor-image:
60 Presently, this layer also enables the Google Iana for registering phosphor-ipmi-ethstats in additi…
/openbmc/openbmc/meta-openpower/conf/
H A Dlayer.conf9 BBFILE_PATTERN_openpower-layer := "^${LAYERDIR}/"
10 LAYERVERSION_openpower-layer = "1"
11 LAYERDEPENDS_openpower-layer = "core phosphor-layer aspeed-layer"
12 LAYERSERIES_COMPAT_openpower-layer = "whinlatter walnascar"
/openbmc/openbmc/poky/meta/lib/bblayers/templates/
H A DREADME1 This README file contains information on the contents of the {layername} layer.
21 Please submit any patches against the {layername} layer to the xxxx mailing list (xxxx@zzzz.org)
29 I. Adding the {layername} layer to your build
33 I. Adding the {layername} layer to your build
36 Run 'bitbake-layers add-layer {layername}'
41 --- replace with specific information about the {layername} layer ---
/openbmc/openbmc/meta-arm/scripts/
H A Dlayer-overview.py23 def print_layer(layer): argument
27 print(layer.name)
29 machines = sorted(p for p in layer.glob("conf/machine/*.conf"))
36 recipes = sorted((p for p in layer.glob("recipes-*/*/*.bb")), key=lambda p:p.name)
70 for layer in sublayers:
71 print_layer(layer)

12345678910>>...23