Home
last modified time | relevance | path

Searched refs:srcrev (Results 1 – 18 of 18) sorted by relevance

/openbmc/openbmc/poky/scripts/
H A Dbuildhistory-collect-srcrevs70 srcrev = None
86 srcrev = value
90 if srcrev and (options.reportall or srcrev != orig_srcrev):
91 all_srcrevs[curdir].append((pn, None, srcrev))
100 for pn, name, srcrev in srcrevs:
102 print('SRCREV_%s:pn-%s%s = "%s"' % (name, pn, forcevariable, srcrev))
104 print('SRCREV:pn-%s%s = "%s"' % (pn, forcevariable, srcrev))
/openbmc/openbmc/poky/meta/classes/
H A Dmigrate_localcount.bbclass31 srcrev = bb.fetch2.get_srcrev(e.data)
32 base_ver = 'AUTOINC-%s' % version[:version.find(srcrev)]
37 if srcrev != ('AUTOINC+%s' % revs[0]):
47 (base_ver, pkgarch, srcrev, str(value)))
H A Dbuildhistory.bbclass125 self.srcrev = ""
960 for name, srcrev in sorted(srcrevs.items()):
967 f.write('SRCREV%s = "%s"\n' % (suffix, srcrev))
968 for name, srcrev in sorted(tag_srcrevs.items()):
969 f.write('# tag_%s = "%s"\n' % (name, srcrev))
970 if name in old_tag_srcrevs and old_tag_srcrevs[name] != srcrev:
972 …kage %s was changed since last build (from %s to %s)" % (name, pkg, old_tag_srcrevs[name], srcrev))
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dupgrade.py160 srcrev = '${AUTOREV}'
166 srcrev = res.group(1)
168 return srcuri, srcrev
184 if srcrev:
185 rev = srcrev
357 if srcrev:
358 newvalues['SRCREV'] = srcrev
542 if args.srcbranch and not args.srcrev:
567 if not args.version and not args.srcrev:
573 if not args.version and not args.srcrev:
[all …]
H A Dstandard.py62 if args.srcrev:
154 if args.srcrev:
155 extracmdopts += ' --srcrev %s' % args.srcrev
1598 srcrev = stdout.strip()
1599 if len(srcrev) != 40:
1605 patchfields['SRCREV'] = srcrev
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpatch.py972 srcrev = d.getVar('SRCREV')
973 if srcrev and srcrev < parm["minrev"]:
977 srcrev = d.getVar('SRCREV')
978 if srcrev and srcrev > parm["maxrev"]:
982 srcrev = d.getVar('SRCREV')
983 if srcrev and parm["rev"] not in srcrev:
987 srcrev = d.getVar('SRCREV')
988 if srcrev and parm["notrev"] in srcrev:
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py420 srcrev = '${AUTOREV}'
474 if args.srcrev:
480 srcrev = res.group(1)
482 elif args.srcrev:
483 srcrev = args.srcrev
500 if not srcbranch and not nobranch and srcrev != '${AUTOREV}':
553 …if not srcbranch and not nobranch and srcrev and (srcrev != '${AUTOREV}') and scheme in ['git', 'g…
587 srcrev = check_tag.split()[0]
726 if not args.autorev and srcrev == '${AUTOREV}':
729 srcrev = stdout.rstrip()
[all …]
/openbmc/openbmc/poky/meta-selftest/recipes-test/gitunpackoffline/
H A Dgitunpackoffline-fail.bb3 # Clear the base.bbclass magic srcrev call
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A D__init__.py1214 srcrev = None
1226 srcrev = d.getVar(a)
1227 if srcrev and srcrev != "INVALID":
1238 if srcrev == "INVALID" or not srcrev:
1240 if srcrev != parmrev:
1241 …ns (%s from SRCREV and %s from the url) found, please specify one valid value" % (srcrev, parmrev))
1244 if srcrev == "INVALID" or not srcrev:
1246 if srcrev == "AUTOINC":
1248 srcrev = ud.method.latest_revision(ud, d, name)
1250 return srcrev
/openbmc/openbmc/poky/scripts/lib/
H A Dscriptutils.py135 def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirrors=False): argument
179 f.write('SRCREV = "%s"\n' % srcrev)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Drecipetool.py763 srcrev = "v3.0.0"
766 …result = runCmd('recipetool create -o %s %s -S %s -B %s' % (temprecipe, srcuri, srcrev, srcbranch))
940 srcrev = "v7.2.0"
944 …tool create -o %s %s -S %s -B %s --src-subdir %s' % (temprecipe, srcuri, srcrev, srcbranch, srcsub…
H A Dsstatetests.py230 srcrev = '6cc6077a36fe2648a5f993fe7c16c9632f946517'
234 result = runCmd('git reset --hard %s' % srcrev, cwd=srcdir)
H A Ddevtool.py438 srcrev = '6cc6077a36fe2648a5f993fe7c16c9632f946517'
445 result = runCmd('git reset --hard %s' % srcrev, cwd=srcdir)
468 checkvars['SRCREV'] = srcrev
/openbmc/openbmc/poky/documentation/ref-manual/
H A Ddevtool-reference.rst85 …no-same-dir] [--fetch URI] [--npm-dev] [--version VERSION] [--no-git] [--srcrev SRCREV | --autorev…
105 --srcrev SRCREV, -S SRCREV
207 - To specify a specific tag or commit hash, use the ``--srcrev``
210 $ devtool add --srcrev &DISTRO_REL_TAG; jackson /home/user/sources/jackson
211 $ devtool add --srcrev some_commit_hash /home/user/sources/jackson
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.3.2.rst46 - devtool: finish/update-recipe: restrict mode srcrev to recipes fetched from SCM
H A Dmigration-1.5.rst143 .. _migration-1.5-shortened-git-srcrev-values:
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dkernel-yocto.bbclass697 bbnote "dev kernel: adjusting branch to $machine_branch, srcrev to: $force_srcrev"
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dfetch.py1799 srcrev = self.git('rev-parse HEAD', cwd=self.srcdir).strip()
1800 self.d.setVar('SRCREV', srcrev)