Home
last modified time | relevance | path

Searched refs:current_version (Results 1 – 13 of 13) sorted by relevance

/openbmc/openbmc/poky/bitbake/doc/sphinx-static/
H A Dswitchers.js60 function build_version_select(current_series, current_version) { argument
66 if (version == current_version)
71 if (version != current_version)
72 …buf.push('<option value="' + current_version + '" selected="selected">' + current_version + '</opt…
146 var current_version = DOCUMENTATION_OPTIONS.VERSION;
154 if (current_version == "dev") {
158 var new_url = url.replace('/' + current_version + '/', '/' + new_versionpath);
180 var current_version = DOCUMENTATION_OPTIONS.VERSION;
182 if (ver_compare(current_version, "3.2") < 0) {
/openbmc/openbmc/poky/documentation/
H A Dconf.py34 current_version = subst_vars["DOCCONF_VERSION"] variable
41 version = 'Version: ' + current_version
42 if current_version == 'dev':
45 release = current_version
146 'current_version': current_version,
/openbmc/openbmc/poky/bitbake/doc/
H A Dconf.py20 current_version = "dev" variable
23 version = 'Version: ' + current_version
24 if current_version == 'dev':
27 release = current_version
/openbmc/linux/arch/riscv/mm/
H A Dcontext.c27 static atomic_long_t current_version; variable
99 unsigned long asid, ver = atomic_long_read(&current_version); in __new_context()
131 ver = atomic_long_add_return_relaxed(num_asids, &current_version); in __new_context()
171 ((cntx & ~asid_mask) == atomic_long_read(&current_version)) && in set_mm_asid()
180 if ((cntx & ~asid_mask) != atomic_long_read(&current_version)) { in set_mm_asid()
258 atomic_long_set(&current_version, num_asids); in asids_init()
/openbmc/openbmc/poky/meta-poky/classes/
H A Dpoky-sanity.bbclass4 current_version = int(d.getVar('POKY_BBLAYERS_CONF_VERSION') or -1)
6 if current_version == -1 or latest_version == -1:
27 current_version = latest_version
33 #sanity_conf_update(bblayers_fn, lines, 'POKY_BBLAYERS_CONF_VERSION', current_version)
35 lines[index] = 'POKY_BBLAYERS_CONF_VERSION = "%d"\n' % current_version
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dwget.py502 def _check_latest_version(self, url, package, package_regex, current_version, ud, d): argument
535 (package, pupver or "N/A", current_version[1]))
542 def _check_latest_version_by_dir(self, dirver, package, package_regex, current_version, ud, d): argument
586 package, package_regex, current_version, ud, d)
654 current_version = ['', d.getVar('PV'), '']
658 current_version[1] = re.sub('_', '.', current_version[1])
659 current_version[1] = re.sub('-', '.', current_version[1])
660 return (current_version[1], '')
684 package, package_regex, current_version, ud, d), '')
691 current_version, ud, d), '')
/openbmc/openbmc/poky/documentation/sphinx-static/
H A Dswitchers.js.in69 function build_version_select(current_series, current_version) { argument
75 if (version == current_version)
158 var current_version = DOCUMENTATION_OPTIONS.VERSION;
164 if (docroot.endsWith(current_version + '/') == false) {
171 current_version = release;
176 var new_url = url.replace('/' + current_version + '/', '/' + new_versionpath);
198 var current_version = DOCUMENTATION_OPTIONS.VERSION;
200 if (ver_compare(current_version, "3.2") < 0) {
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/giflib/giflib/
H A D0001-Makefile-fix-typo-in-soname-argument.patch28 $(CC) $(CFLAGS) -dynamiclib -current_version $(LIBVER) $(OBJECTS) -o $(LIBUTILSO)
/openbmc/linux/drivers/s390/scsi/
H A Dzfcp_fsf.h235 u32 current_version; member
H A Dzfcp_fsf.c250 u32 version = sr_buf->payload.version_change.current_version; in zfcp_fsf_status_read_version_change()
/openbmc/linux/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_minidump.c1416 u32 prev_version, current_version; in qlcnic_83xx_get_minidump_template() local
1424 current_version = qlcnic_83xx_get_fw_version(adapter); in qlcnic_83xx_get_minidump_template()
1426 if (fw_dump->tmpl_hdr == NULL || current_version > prev_version) { in qlcnic_83xx_get_minidump_template()
/openbmc/qemu/block/
H A Dqcow2.c5451 int current_version = s->qcow_version; in qcow2_downgrade() local
5456 assert(target_version < current_version); in qcow2_downgrade()
5544 s->qcow_version = current_version; in qcow2_downgrade()
5563 int current_version = s->qcow_version; in qcow2_upgrade() local
5568 assert(target_version > current_version); in qcow2_upgrade()
5604 s->qcow_version = current_version; in qcow2_upgrade()
/openbmc/openbmc/poky/meta/classes-global/
H A Dsanity.bbclass578 conffile, current_version, required_version, func = func.split(":")
579 if check_conf_exists(conffile, d) and d.getVar(current_version) is not None and \
580 d.getVar(current_version) != d.getVar(required_version):