| /openbmc/openbmc/poky/meta/classes/ |
| H A D | distrooverrides.bbclass | 7 # Turns certain DISTRO_FEATURES into overrides with the same 10 # recipes, so that these overrides can also be used there. 23 # Beware that this part of OVERRIDES changes during parsing, so usage 24 # of these overrides should be limited to .bb and .bbappend files, 29 Each entry is added to OVERRIDES as df-<feature> if <feature> is in DISTRO_FEATURES." 36 # OVERRIDES itself should be fixed. Excluding these two variables
|
| H A D | devtool-source.bbclass | 142 default_overrides = d.getVar('OVERRIDES').split(':') 144 # First, we may have some overrides that are referred to in the recipe set in 150 # Some overrides are active in the current configuration, so 151 # we need to create a branch where none of the overrides are active 152 bb.process.run('git checkout %s -b devtool-no-overrides' % initial_rev, cwd=srcsubdir) 155 localdata.setVar('OVERRIDES', ':'.join(no_overrides)) 159 # Now we need to reconcile the dev branch with the no-overrides one 162 bb.process.run('git rebase devtool-no-overrides', cwd=srcsubdir) 164 bb.process.run('git checkout %s -b devtool-no-overrides' % devbranch, cwd=srcsubdir) 174 localdata.setVar('OVERRIDES', ':'.join(no_overrides + [override])) [all …]
|
| H A D | multilib.bbclass | 36 overrides = e.data.getVar("OVERRIDES", False) 38 overrides = overrides.replace("pn-${PN}", "pn-${PN}:pn-" + pn) 39 d.setVar("OVERRIDES", overrides) 46 d.setVar("OVERRIDES", d.getVar("OVERRIDES", False) + override) 60 d.setVar("OVERRIDES", d.getVar("OVERRIDES", False) + override) 87 d.setVar("OVERRIDES", d.getVar("OVERRIDES", False) + override)
|
| H A D | multilib_global.bbclass | 46 localdata.setVar("OVERRIDES", localdata.getVar("OVERRIDES", False) + override) 79 localdata.setVar("OVERRIDES", localdata.getVar("OVERRIDES", False) + override) 101 localdata.setVar("OVERRIDES", localdata.getVar("OVERRIDES", False) + override) 124 localdata.setVar("OVERRIDES", localdata.getVar("OVERRIDES", False) + override)
|
| H A D | mcextend.bbclass | 17 e.data.setVar("OVERRIDES", e.data.getVar("OVERRIDES", False) + override)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/libblockdev/files/ |
| H A D | 0001-fix-pythondir-for-multilib-when-cross-compiling.patch | 16 src/python/gi/overrides/Makefile.am | 2 +- 19 diff --git a/src/python/gi/overrides/Makefile.am b/src/python/gi/overrides/Makefile.am 21 --- a/src/python/gi/overrides/Makefile.am 22 +++ b/src/python/gi/overrides/Makefile.am 27 py3overridesdir = $(py3libdir)/gi/overrides
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | grub-efi-cfg.bbclass | 91 overrides = localdata.getVar('OVERRIDES') 92 if not overrides: 93 bb.fatal('OVERRIDES not defined') 96 localdata.setVar('OVERRIDES', 'grub_' + label + ':' + overrides) 128 build_efi_cfg[vardepsexclude] += "OVERRIDES"
|
| H A D | uboot-extlinux-config.bbclass | 33 # use overrides to set menu description, console and others variables. 116 # Need to deconflict the labels with existing overrides 118 default_overrides = localdata.getVar('OVERRIDES').split(':') 119 # We're keeping all the existing overrides that aren't used as a label 125 localdata.setVar('OVERRIDES', ':'.join(keep_overrides + [label])) 167 do_create_extlinux_config[vardepsexclude] += "OVERRIDES"
|
| H A D | update-rc.d.bbclass | 75 populate_packages_updatercd[vardepsexclude] += "OVERRIDES" 93 overrides = localdata.getVar("OVERRIDES") 94 localdata.setVar("OVERRIDES", "%s:%s" % (pkg, overrides))
|
| H A D | syslinux.bbclass | 156 overrides = localdata.getVar('OVERRIDES') 157 if not overrides: 158 bb.fatal('OVERRIDES not defined') 160 localdata.setVar('OVERRIDES', label + ':' + overrides)
|
| H A D | linuxloader.bbclass | 70 overrides = d.getVar("OVERRIDES").split(":") 72 if "libc-baremetal" in overrides: 75 if "libc-musl" in overrides:
|
| H A D | image-postinst-intercepts.bbclass | 15 overrides = (':' + d.getVar('FILESOVERRIDES')).split(':') + [''] 16 search_paths = [os.path.join(p, op) for p in paths for op in overrides]
|
| /openbmc/openbmc/poky/meta/recipes-core/meta/ |
| H A D | meta-environment.bb | 41 # Load overrides from 'd' to avoid having to reset the value... 42 overrides = d.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item 43 localdata.setVar("OVERRIDES", overrides)
|
| /openbmc/openpower-proc-control/procedures/common/ |
| H A D | cfam_overrides.cpp | 40 std::ifstream overrides("/var/lib/obmc/cfam_overrides"); in CFAMOverride() local 42 if (overrides.is_open()) in CFAMOverride() 44 while (std::getline(overrides, line)) in CFAMOverride() 72 overrides.close(); in CFAMOverride()
|
| /openbmc/openbmc/poky/documentation/migration-guides/ |
| H A D | migration-3.4.rst | 53 overrides, some are less obvious, for example the packaging variables such as 55 ``${PN}-ptest``) as overrides. These overrides are not always in 56 :term:`OVERRIDES` but applied conditionally in specific contexts 58 context being specific tasks in that case. Tune overrides are another special 59 case where some code does use them as overrides but some does not. We plan to try 60 and make the tune code use overrides more consistently in the future. 70 Once configured with the overrides used by a layer, this can be run as:: 72 <oe-core>/scripts/contrib/convert-overrides.py <layerdir> 77 expected to handle every case. In particular, it needs to be told which overrides 78 the layer uses (usually machine and distro names/overrides) and the result should [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/ |
| H A D | 0001-testsuite-use-www.example.org-for-wget-test-cases.patch | 13 testsuite/wget/wget--O-overrides--P | 2 +- 19 diff --git a/testsuite/wget/wget--O-overrides--P b/testsuite/wget/wget--O-overrides--P 21 --- a/testsuite/wget/wget--O-overrides--P 22 +++ b/testsuite/wget/wget--O-overrides--P
|
| /openbmc/openbmc/meta-google/conf/distro/ |
| H A D | gbmc.conf | 14 OVERRIDES .= ":${GBMC_CONFIG}:" 16 OVERRIDES:append:mfg = ":local:" 18 OVERRIDES:append:local = ":dev:"
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | data_smart.py | 441 self.overrides = None 442 self.overridevars = set(["OVERRIDES", "FILE"]) 489 if self.overrides is not None: 497 self.overrides = [] 499 self.overrides = (self.getVar("OVERRIDES") or "").split(":") or [] 500 overrride_stack.append(self.overrides) 501 self.overridesset = set(self.overrides) 504 newoverrides = (self.getVar("OVERRIDES") or "").split(":") or [] 505 if newoverrides == self.overrides: 507 self.overrides = newoverrides [all …]
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | distro_check.py | 230 localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES')) 235 localdata.setVar('OVERRIDES', "pn-" + pnstripped[1] + ":" + d.getVar('OVERRIDES')) 240 localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES')) 245 localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES'))
|
| H A D | utils.py | 474 overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + variant 475 localdata.setVar("OVERRIDES", overrides) 481 overrides = localdata.getVar("OVERRIDES", False).split(":") 482 overrides = ":".join([x for x in overrides if not x.startswith("virtclass-multilib-")]) 483 localdata.setVar("OVERRIDES", overrides)
|
| /openbmc/openbmc/meta-phosphor/recipes-core/systemd/ |
| H A D | phosphor-systemd-policy.bb | 1 SUMMARY = "Phosphor systemd configuration overrides" 2 DESCRIPTION = "Overrides for systemd and its applications"
|
| /openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
| H A D | bitbake-user-manual-metadata.rst | 66 overrides an existing configuration. 324 The overrides are applied in this order, ":append", ":prepend", ":remove". 361 The overrides are applied in this order, ":append", ":prepend", ":remove". 419 combine them with other overrides as described in the 420 ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:conditional syntax (overrides)`" section. 551 Conditional Syntax (Overrides) 554 BitBake uses :term:`OVERRIDES` to control what 556 files. This section describes how you can use :term:`OVERRIDES` as 558 :term:`OVERRIDES`, and provides some examples to help with understanding. 563 You can use :term:`OVERRIDES` to conditionally select a specific version of [all …]
|
| /openbmc/webui-vue/docs/guide/coding-standards/ |
| H A D | readme.md | 22 ## Overrides section in JavaScript and SASS 24 Any overrides to a rule are located in the ESLint configuration file,
|
| /openbmc/openbmc/poky/scripts/contrib/ |
| H A D | convert-overrides.py | 11 # To use this script on a new layer you need to list the overrides the 33 …hort-override", action="append", default=[], help="Additional strings to treat as short overrides") 38 # List of strings to treat as overrides 54 # List of strings to treat as overrides but only with whitespace following or another override (mor… 65 # Expressions to skip if encountered, these are not overrides
|
| /openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
| H A D | PrivilegeRegistry.v1_2_0.json | 66 "description": "The privilege overrides of properties within a resource.", 70 …"longDescription": "This property shall contain the privilege overrides of properties, such as the… 74 "description": "The privilege overrides of resource URIs.", 78 …"longDescription": "This property shall contain the privilege overrides of resource URIs. The tar… 82 "description": "The privilege overrides of the subordinate resource.", 86 …"longDescription": "This property shall contain the privilege overrides of the subordinate resourc…
|