Home
last modified time | relevance | path

Searched refs:revs (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/yocto/poky/scripts/lib/resulttool/
H A Dregression.py92 revs = gitarchive.get_test_revs(logger, repo, tag_name, branch=args.branch)
99 if not len(revs):
103 if len(revs) < 2:
104 logger.error("Only %d tester revisions found, unable to generate report" % len(revs))
111 index1 = gitarchive.rev_find(revs, 'commit', args.commit)
113 index1 = gitarchive.rev_find(revs, 'commit_number', args.commit_number)
115 index1 = len(revs) - 1
118 revs2.append(revs[index1])
120 revs = revs2
125 index2 = gitarchive.rev_find(revs, 'commit', args.commit2)
[all …]
H A Dreport.py238 revs = gitarchive.get_test_revs(logger, repo, tag_name, branch=branch)
239 rev_index = gitarchive.rev_find(revs, 'commit', commit)
240 testresults = resultutils.git_get_result(repo, revs[rev_index][2], configmap=configmap)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dgitarchive.py199 revs = []
203 revs.append([groups[f] for f in undef_fields] + [tag])
206 return undef_fields, sorted(revs)
212 revs = {}
219 if not commit in revs:
220 revs[commit] = TestedRev(commit, commit_num, [tag])
222 assert commit_num == revs[commit].commit_number, "Commit numbers do not match"
223 revs[commit].tags.append(tag)
226 revs = sorted(revs.values(), key=attrgetter('commit_number'))
227 log.debug("Found %d tested revisions:\n %s", len(revs),
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-build-perf-report45 fields, revs = gitarchive.get_test_runs(log, repo, tag_name, **valid_kwargs)
62 for rev in revs:
375 def get_buildstats(repo, notes_ref, notes_ref2, revs, outdir=None): argument
387 for rev in revs:
510 revs = gitarchive.get_test_revs(log, repo, args.tag_name, hostname=args.hostname,
518 if not len(revs):
522 if len(revs) < 2:
523 log.error("Only %d tester revisions found, unable to generate report" % len(revs))
530 index1 = gitarchive.rev_find(revs, 'commit', args.commit)
532 index1 = gitarchive.rev_find(revs, 'commit_number', args.commit_number)
[all …]
H A Dcombo-layer1048 revs = runcmd("git rev-list %s" % rev_list_args, **largs).split()
1049 logger.debug("To be imported: %s" % revs)
1106 if rev not in revs and is_imported(rev):
1176 if revs:
1177 for rev in revs:
1182 additional_heads[old2new_revs[revs[-1]]] = head if repo['last_revision'] else None
1183 repo['last_revision'] = revs[-1]
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dmigrate_localcount.bbclass15 revs = localcounts.get_by_pattern('%%-%s_rev' % pn)
17 if not revs or not counts:
20 if len(revs) != len(counts):
21 bb.warn("The number of revs and localcounts don't match in %s" % pn)
30 if len(revs) == 1:
31 if srcrev != ('AUTOINC+%s' % revs[0]):
H A Dbuildhistory.bbclass842 cat ${BUILDHISTORY_DIR}/metadata-revs >> $commitmsgfile
854 cat > ${BUILDHISTORY_DIR}/metadata-revs <<END
870 # Check if there are new/changed files to commit (other than metadata-revs)
871 repostatus=`git status --porcelain | grep -v " metadata-revs$"`
877 # Ensure we commit metadata-revs with the first commit
/OK3568_Linux_fs/kernel/drivers/gpu/drm/panfrost/
H A Dpanfrost_gpu.c167 } revs[MAX_HW_REVS]; member
176 .revs = { __VA_ARGS__ }, \
283 if (model->revs[i].revision == rev) { in panfrost_gpu_init_features()
286 } else if (model->revs[i].revision == (rev & ~0xf)) in panfrost_gpu_init_features()
291 hw_issues |= model->revs[best].issues; in panfrost_gpu_init_features()
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dgit-make-shallow44 revs = check_output(['git', 'rev-list'] + args.revisions).splitlines()
49 remaining_history = set(revs) & set(ref_revs)
/OK3568_Linux_fs/kernel/arch/mips/include/asm/xtalk/
H A Dxwidget.h120 char *revs[16]; member
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A D__init__.py501 revs = bb.persist_data.persist('BB_URI_HEADREVS', d)
506 bb.fetch2.saved_headrevs = dict(revs)
516 revs.clear()
1621 revs = bb.persist_data.persist('BB_URI_HEADREVS', d)
1624 return revs[key]
1626 revs[key] = rev = self._latest_revision(ud, d, name)
H A Dgit.py224 revs = d.getVar("BB_GIT_SHALLOW_REVS_%s" % name)
225 if revs is not None:
226 ud.shallow_revs.extend(revs.split())
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dbuild-perf-test-wrapper.sh131 commit_hash=`git rev-parse --revs-only $commit --`
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/classes/
H A Dgitpkgv.bbclass7 # NN equals the total number of revs up to SRCREV
/OK3568_Linux_fs/kernel/arch/powerpc/kvm/
H A Dbook3s_hv_rm_mmu.c567 struct revmap_entry *rev, *revs[4]; in kvmppc_h_bulk_remove() local
648 revs[n] = rev; in kvmppc_h_bulk_remove()
663 rev = revs[k]; in kvmppc_h_bulk_remove()
/OK3568_Linux_fs/kernel/arch/arm/mach-davinci/
H A DKconfig41 # needed on silicon revs 1.0, 1.1:
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dfetch.py1497 revs = self.git(['rev-list'] + args)
1498 actual_count = len(revs.splitlines())
1631 revs = self.git(['rev-list'] + args, cwd=cwd)
1632 actual_count = len(revs.splitlines())
2130 revs = len(self.git('rev-list master').splitlines())
2131 self.assertNotEqual(orig_revs, revs)
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Drelease-notes-4.0.7.rst45 - combo-layer: add sync-revs command
/OK3568_Linux_fs/kernel/arch/arm/
H A DKconfig1071 (all revs) erratum. In very rare timing conditions, a sequence
1081 (all revs) erratum. Within rare timing constraints, executing a
1090 (all revs) erratum. Under very rare timing conditions, the CPU might
/OK3568_Linux_fs/yocto/poky/documentation/dev-manual/
H A Dcommon-tasks.rst8219 At the top level, there is a ``metadata-revs`` file that lists the