Home
last modified time | relevance | path

Searched full:layers (Results 1 – 25 of 1175) sorted by relevance

12345678910>>...47

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dbblayers.py16 result = runCmd('bitbake-layers layerindex-show-depends meta-poky')
18 …, msg = "openembedded-core should have been listed at this step. bitbake-layers layerindex-show-de…
21 result = runCmd('bitbake-layers show-cross-depends')
25 result = runCmd('bitbake-layers show-layers')
31 result = runCmd('bitbake-layers show-appends')
35 result = runCmd('bitbake-layers show-overlayed')
45 result = runCmd('bitbake-layers flatten %s' % testoutdir)
50 …self.assertTrue(find_in_contents, msg = "Flattening layers did not work. bitbake-layers flatten ou…
54 result = runCmd('bitbake-layers show-layers')
55 …"This test cannot run with meta-skeleton in bblayers.conf. bitbake-layers show-layers output: %s" …
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/test-manual/
H A Dyocto-project-compatible.rst11 After the introduction of layers to OpenEmbedded, it quickly became clear
12 that while some layers were popular and worked well, others developed a
13 reputation for being "problematic". Those were layers which didn't
16 because such layers are often created by developers with a particular focus
21 As a result of noticing such patterns and friction between layers, the project
22 developed the "Yocto Project Compatible" badge program, allowing layers
25 questions where layers can declare if they meet the appropriate criteria.
42 Over time, the project identified characteristics in layers that allow them
43 to operate well together. "anti-patterns" were also found, preventing layers
48 and cooperate well with other compatible layers.
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dyocto-check-layer54 parser.add_argument('layers', metavar='LAYER_DIR', nargs='+',
59 help='Layers to process for dependencies', action='store')
64 parser.add_argument('--additional-layers', nargs="+",
65 help='List of additional layers to add during testing', action='store')
69 help='check that software layers do not change signatures (on by default)')
71 help='disable signature checking for software layers')
101 layers = detect_layers(args.layers, args.no_auto)
102 if not layers:
103 logger.error("Failed to detect layers")
111 dep_layers = dep_layers + layers
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/
H A Dmapbox-gl-native.pro153 src/mbgl/renderer/layers/render_background_layer.cpp \
154 src/mbgl/renderer/layers/render_circle_layer.cpp \
155 src/mbgl/renderer/layers/render_custom_layer.cpp \
156 src/mbgl/renderer/layers/render_fill_extrusion_layer.cpp \
157 src/mbgl/renderer/layers/render_fill_layer.cpp \
158 src/mbgl/renderer/layers/render_heatmap_layer.cpp \
159 src/mbgl/renderer/layers/render_hillshade_layer.cpp \
160 src/mbgl/renderer/layers/render_line_layer.cpp \
161 src/mbgl/renderer/layers/render_raster_layer.cpp \
162 src/mbgl/renderer/layers/render_symbol_layer.cpp \
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/
H A Daction.py18 logger = logging.getLogger('bitbake-layers')
27 """Add one or more layers to bblayers.conf."""
45 # Back up bblayers.conf to tempdir before we add layers
67 """Remove one or more layers from bblayers.conf."""
85 sys.stderr.write("No layers matching %s found in BBLAYERS\n" % item)
91 Takes the specified layers (or all layers in the current layer
93 containing the contents of all layers, with any overlayed recipes removed
102 * when the flattened layers do not have the same directory structure (the
105 Warning: if you flatten several layers where another layer is intended to
107 bbappends in the layers interact, and then attempt to use the new output
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.cpp4 #include <mbgl/style/layers/symbol_layer.hpp>
5 #include <mbgl/style/layers/custom_layer.hpp>
6 #include <mbgl/style/layers/background_layer.hpp>
7 #include <mbgl/style/layers/fill_layer.hpp>
8 #include <mbgl/style/layers/fill_extrusion_layer.hpp>
9 #include <mbgl/style/layers/heatmap_layer.hpp>
10 #include <mbgl/style/layers/line_layer.hpp>
11 #include <mbgl/style/layers/circle_layer.hpp>
12 #include <mbgl/style/layers/raster_layer.hpp>
13 #include <mbgl/style/layers/hillshade_layer.hpp>
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/conf/
H A Dlayer.conf1 # It really depends on order of the layers appearing in BBLAYERS
22 # other layers.
26 # only activates content when identified layers are present,
29 meta-python:${LAYERDIR}/dynamic-layers/meta-python/recipes-*/*/*.bb \
30 meta-python:${LAYERDIR}/dynamic-layers/meta-python/recipes-*/*/*.bbappend \
31 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/recipes-*/*/*.bb \
32 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/recipes-*/*/*.bbappend \
33 gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/recipes-*/*/*.bb \
34 gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/recipes-*/*/*.bbappend \
35 perl-layer:${LAYERDIR}/dynamic-layers/perl-layer/recipes-*/*/*.bb \
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/checklayer/
H A D__init__.py130 layers = []
142 layers.append(layer)
150 layers.append(layer)
152 return layers
154 def _find_layer(depend, layers): argument
155 for layer in layers:
164 def sanity_check_layers(layers, logger): argument
175 for layer in layers:
185 def get_layer_dependencies(layer, layers, logger): argument
186 def recurse_dependencies(depends, layer, layers, logger, ret = []): argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp2 #include <mbgl/renderer/layers/render_background_layer.hpp>
3 #include <mbgl/renderer/layers/render_circle_layer.hpp>
4 #include <mbgl/renderer/layers/render_custom_layer.hpp>
5 #include <mbgl/renderer/layers/render_fill_extrusion_layer.hpp>
6 #include <mbgl/renderer/layers/render_fill_layer.hpp>
7 #include <mbgl/renderer/layers/render_hillshade_layer.hpp>
8 #include <mbgl/renderer/layers/render_line_layer.hpp>
9 #include <mbgl/renderer/layers/render_raster_layer.hpp>
10 #include <mbgl/renderer/layers/render_symbol_layer.hpp>
11 #include <mbgl/renderer/layers/render_heatmap_layer.hpp>
H A Drenderer_impl.cpp14 #include <mbgl/renderer/layers/render_background_layer.hpp>
15 #include <mbgl/renderer/layers/render_custom_layer.hpp>
16 #include <mbgl/renderer/layers/render_fill_extrusion_layer.hpp>
17 #include <mbgl/renderer/layers/render_heatmap_layer.hpp>
18 #include <mbgl/renderer/layers/render_hillshade_layer.hpp>
158 const LayerDifference layerDiff = diffLayers(layerImpls, updateParameters.layers); in render()
159 layerImpls = updateParameters.layers; in render()
161 // Remove render layers for removed layers. in render()
166 // Create render layers for newly added layers. in render()
171 // Update render layers for changed layers. in render()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dcopy_buildsystem.py5 # buildsystem such as layers, bitbake location, etc.
7 # SDK_LAYERS_EXCLUDE: Layers which will be excluded from SDK layers.
40 # Copy in all metadata layers + bitbake (as repositories)
44 layers = list(self.layerdirs)
47 layers.append(corebase)
51 layers.append(os.path.join(corebase, 'meta-skeleton'))
53 # Exclude layers
55 if layer_exclude in layers:
56 … bb.note('Excluded %s from sdk layers since it is in SDK_LAYERS_EXCLUDE' % layer_exclude)
57 layers.remove(layer_exclude)
[all …]
/OK3568_Linux_fs/yocto/meta-clang/conf/
H A Dlayer.conf14 browser-layer:${LAYERDIR}/dynamic-layers/browser-layer/*/*.bb \
15 browser-layer:${LAYERDIR}/dynamic-layers/browser-layer/*/*.bbappend \
16 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bb \
17 openembedded-layer:${LAYERDIR}/dynamic-layers/openembedded-layer/*/*/*.bbappend \
18 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bb \
19 networking-layer:${LAYERDIR}/dynamic-layers/networking-layer/*/*/*.bbappend \
20 selinux:${LAYERDIR}/dynamic-layers/selinux/*/*.bb \
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templates/
H A Dproject_specific.html39 <li>Remove its imported layers</li>
69 …<span class="help-block">Machine suggestions come from the list of layers added to your project. I…
130 <h3>Layers <span class="counter">(<span id="project-layers-count"></span>)</span>
131 …edded organises recipes and machines into thematic groups called <strong>layers</strong>. Click on…
134 <div class="alert alert-warning" id="no-layers-in-project" style="display:none">
135 <h4>This project has no layers</h4>
136 In order to build this project you need to add some layers first. For that you can:
138 …<li><a href="{% url 'projectlayers' project.id %}">Choose from the layers compatible with this pro…
140 …dev-manual/common-tasks.html#understanding-and-creating-layers" target="_blank">Read about layers
151 … href="{% url 'projectlayers' project.id %}" id="view-compatible-layers">View compatible layers</a>
[all …]
H A Dproject.html39 <li>Remove its imported layers</li>
69 …<span class="help-block">Machine suggestions come from the list of layers added to your project. I…
132 <h3>Layers <span class="counter">(<span id="project-layers-count"></span>)</span>
133 …edded organises recipes and machines into thematic groups called <strong>layers</strong>. Click on…
136 <div class="alert alert-warning" id="no-layers-in-project" style="display:none">
137 <h4>This project has no layers</h4>
138 In order to build this project you need to add some layers first. For that you can:
140 …<li><a href="{% url 'projectlayers' project.id %}">Choose from the layers compatible with this pro…
142 …dev-manual/common-tasks.html#understanding-and-creating-layers" target="_blank">Read about layers
153 … href="{% url 'projectlayers' project.id %}" id="view-compatible-layers">View compatible layers</a>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile.cpp6 #include <mbgl/style/layers/background_layer.hpp>
7 #include <mbgl/style/layers/custom_layer.hpp>
9 #include <mbgl/renderer/layers/render_background_layer.hpp>
10 #include <mbgl/renderer/layers/render_custom_layer.hpp>
11 #include <mbgl/renderer/layers/render_symbol_layer.hpp>
93 void GeometryTile::setLayers(const std::vector<Immutable<Layer::Impl>>& layers) { in setLayers() argument
100 for (const auto& layer : layers) { in setLayers()
101 // Skip irrelevant layers. in setLayers()
203 float GeometryTile::getQueryPadding(const std::vector<const RenderLayer*>& layers) { in getQueryPadding() argument
205 for (const RenderLayer* layer : layers) { in getQueryPadding()
[all …]
H A Dgeometry_tile_worker.cpp8 #include <mbgl/style/layers/symbol_layer_impl.hpp>
9 #include <mbgl/renderer/layers/render_symbol_layer.hpp>
50 set{Data,Layers}, symbolDependenciesChanged, |
59 .--- set{Data,Layers} setShowCollisionBoxes,
63 .-- [NeedsParse] <-- set{Data,Layers} -- [NeedsSymbolLayout] ---.
102 scratch for `setShowCollisionBoxes`, even though it only affects symbol layers.
137 layers = std::move(layers_); in setLayers()
300 …enderLayer>> toRenderLayers(const std::vector<Immutable<style::Layer::Impl>>& layers, float zoom) { in toRenderLayers() argument
302 renderLayers.reserve(layers.size()); in toRenderLayers()
303 for (auto& layer : layers) { in toRenderLayers()
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/
H A Dtransitioning-to-a-custom-environment.rst20 You will be finding layers with recipes and other metadata that support these
32 </software-overview/layers/>` or even the :oe_layerindex:`OpenEmbedded
44 layers to that. Here is the information :ref:`about adding layers
45 <dev-manual/common-tasks:Understanding and Creating Layers>`.
47 #. **Based on the layers you've chosen, make needed changes in your
57 Use the ``bitbake-layers create-layer`` tool for Yocto Project 2.4+
59 ``yocto-layer create`` tool. The ``bitbake-layers`` tool also provides a number
62 \`\`bitbake-layers\`\` script` section.
68 bsp layer using the \`\`bitbake-layers\`\` script>`. For example, given a
109 needed in other layers. You can also add other functionality specific to the
/OK3568_Linux_fs/yocto/poky/documentation/toaster-manual/
H A Dreference.rst20 layers. In particular, we are concerned with layers that you can use
25 of custom layers. A good example of an existing layer index is the
33 API, store the information about the layers in the Toaster database, and
35 information and build layers from Toaster itself without having to
36 clone or edit the BitBake layers configuration file ``bblayers.conf``.
39 custom layers that need to be built on a regular basis by a community of
56 Understanding Your Layers
60 layers that developers build and access using the Yocto Project on a
61 regular basis. This set of layers needs to exist and you need to be
64 layers.
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/bsp-guide/
H A Dbsp.rst15 This guide presents information about BSP layers, defines a structure
19 Layer using the :ref:`bitbake-layers <bsp-guide/bsp:Creating a new BSP Layer Using the \`\`bitbake-
22 BSP Layers
28 layers in the Yocto Project use the following well-established naming
39 advisable to follow it when creating layers. Technically speaking, a
46 layers in the
50 you will find a list of repositories under "Yocto Metadata Layers".
54 Layers that are no longer actively supported as part of the Yocto
58 ``meta-raspberrypi`` and ``meta-intel``). Each of these layers is a
65 In addition to BSP layers, the ``meta-yocto-bsp`` layer is part of the
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/
H A Dtypeaheads.py18 """ Typeahead for layers available and not added in the current project's
22 layers = prj.get_all_compatible_layer_versions()
23 layers = layers.order_by('layer__name')
26 # for layers already in the project unless required such as when adding
30 layers = layers.exclude(
33 primary_results = layers.filter(layer__name__istartswith=search_term)
34 secondary_results = layers.filter(
/OK3568_Linux_fs/yocto/poky/documentation/overview-manual/
H A Dyp-intro.rst101 add these grouped functionalities to your project as needed. Using layers to
196 collaboration and customization. Layers are repositories that contain
199 collaborate, share, and reuse layers.
201 Layers can contain changes to previous instructions or settings at any
203 previously supplied collaborative or community layers to suit your
206 You use different layers to logically separate information in your
208 middleware, or application layers. Putting your entire build into one
210 information into layers, on the other hand, helps simplify future
217 - Use Board Support Package (BSP) layers from silicon vendors when
221 :yocto_home:`Yocto Project curated layer index</software-overview/layers/>`
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_functional_basic.py65 …ind_element_by_xpath("//*[@id='config-nav']/ul/li/a[@href="+'"'+project_URL+'layers/"'+"]").click()
66 …self.assertTrue(re.search("Compatible layers",self.driver.find_element_by_xpath("//div[@class='col…
68 self.fail(msg='No Compatible layers tab available')
106 …e.search("3",self.driver.find_element_by_id("project-layers-count").text),'There should be 3 layer…
107 layer_list = self.driver.find_element_by_id("layers-in-project-list")
108 layers = layer_list.find_elements_by_tag_name("li")
109 for layer in layers:
117 self.fail(msg='default layers are missing from the project configuration')
175 …e.search("3",self.driver.find_element_by_id("project-layers-count").text),'There should be 3 layer…
176 layer_list = self.driver.find_element_by_id("layers-in-project-list")
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/brief-yoctoprojectqs/
H A Dindex.rst204 layers into your configuration please add entries to conf/bblayers.conf.
229 - 'bitbake-layers' handles common layer tasks
298 In general, layers are repositories that contain related sets of
300 Isolating related metadata into functionally specific layers facilitates
309 #. **Find a Layer:** Many hardware layers are available. The Yocto Project
310 :yocto_git:`Source Repositories <>` has many hardware layers.
331 next to other layers inside the Poky reference repository on your build
337 It is recommended for layers to have a branch per Yocto Project release.
359 Use the ``bitbake-layers add-layer`` command to add the layer to the
365 $ bitbake-layers add-layer ../meta-altera
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/
H A Ddnn.hpp68 * @brief Enum of computation backends supported by layers.
174 /** @brief This interface class allows to build new Layers - are building blocks of networks.
290 * layers fusing. In this way the fused function should be scheduled.
298 * @brief Implement layers fusing.
324 * @brief Returns parameters of layers with channel-wise multiplication and addition.
330 * Some layers can fuse their transformations with further layers.
339 * @brief "Deattaches" all the layers, attached to particular layer.
363 * and edges specify relationships between layers inputs and outputs.
385 /** Returns true if there are no layers in the network. */
413 /** @brief Returns pointers to input layers of specific layer. */
[all …]
/OK3568_Linux_fs/kernel/drivers/edac/
H A Dpasemi_edac.c183 struct edac_mc_layer layers[2]; in pasemi_edac_probe() local
200 layers[0].type = EDAC_MC_LAYER_CHIP_SELECT; in pasemi_edac_probe()
201 layers[0].size = PASEMI_EDAC_NR_CSROWS; in pasemi_edac_probe()
202 layers[0].is_virt_csrow = true; in pasemi_edac_probe()
203 layers[1].type = EDAC_MC_LAYER_CHANNEL; in pasemi_edac_probe()
204 layers[1].size = PASEMI_EDAC_NR_CHANS; in pasemi_edac_probe()
205 layers[1].is_virt_csrow = false; in pasemi_edac_probe()
206 mci = edac_mc_alloc(system_mmc_id++, ARRAY_SIZE(layers), layers, in pasemi_edac_probe()

12345678910>>...47