/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | standard.py | 39 if not args.recipename and not args.srctree and not args.fetch and not args.fetchuri: 45 if scriptutils.is_src_url(args.recipename): 49 args.fetchuri = args.recipename 50 args.recipename = '' 57 elif args.recipename and not args.srctree: 58 if os.sep in args.recipename: 59 args.srctree = args.recipename 60 args.recipename = None 61 elif os.path.isdir(args.recipename): 62 …r.warning('Ambiguous argument "%s" - assuming you mean it to be the recipe name' % args.recipename) [all …]
|
H A D | deploy.py | 140 check_workspace_recipe(workspace, args.recipename, checksrc=False) 145 rd = tinfoil.parse_recipe(args.recipename) 148 (args.recipename, e)) 181 'any files.' % args.recipename) 191 …oe.package.strip_execs(args.recipename, recipe_outdir, strip_cmd, libdir, base_libdir, max_process) 213 print('Files to be deployed for %s on target %s:' % (args.recipename, args.target)) 267 …' % (ssh_sshexec, ssh_port, extraoptions, args.target, tmpscript, args.recipename, destdir, tmpfil… 284 if args.all and args.recipename: 286 elif not args.recipename and not args.all: 324 …%s\'' % (ssh_sshexec, ssh_port, extraoptions, args.target, tmpscript, args.recipename), shell=True) [all …]
|
H A D | build.py | 46 workspacepn = check_workspace_recipe(workspace, args.recipename, bbclassextend=True) 49 rd = parse_recipe(config, tinfoil, args.recipename, appends=True, filter_workspace=False) 71 if args.recipename.endswith('-native') and 'package' in task: 73 bbargs.append('%s:%s' % (args.recipename, task))
|
H A D | utilcmds.py | 26 if args.recipename in workspace: 27 recipefile = workspace[args.recipename]['recipefile'] 33 rd = parse_recipe(config, tinfoil, args.recipename, True) 58 check_workspace_recipe(workspace, args.recipename) 61 rd = parse_recipe(config, tinfoil, args.recipename, appends=True, filter_workspace=False) 88 'bitbake -c configure %s' % args.recipename,
|
H A D | package.py | 19 check_workspace_recipe(workspace, args.recipename) 33 …mmand(config.init_path, basepath, 'bitbake -c %s %s' % (package_task, args.recipename), watch=True)
|
H A D | upgrade.py | 550 if args.recipename in workspace: 551 raise DevtoolError("recipe %s is already in your workspace" % args.recipename) 553 …ou specify --srcbranch/-B then you must use --srcrev/-S to specify the revision" % args.recipename) 559 rd = parse_recipe(config, tinfoil, args.recipename, True) 564 if pn != args.recipename: 565 logger.info('Mapping %s to %s' % (args.recipename, pn)) 641 rd = parse_recipe(config, tinfoil, args.recipename, True)
|
H A D | sdk.py | 247 for recipe in args.recipename: 265 for recipe in args.recipename:
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | sstatesig.py | 11 def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCaches): argument 43 if recipename == depname and depmc == mc: 49 if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: 53 if "*->%s" % depname in siggen.saferecipedeps and recipename != depname: 57 if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename): 144 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None): argument 145 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches) 173 recipename = dataCaches[mc].pkg_fn[fn] 174 self.lockedpnmap[fn] = recipename 178 if recipename in self.unlockedrecipes: [all …]
|
H A D | packagegroup.py | 34 recipe = oe.packagedata.recipename(pkg, d)
|
H A D | packagedata.py | 114 def recipename(pkg, d): function
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | parse.py | 355 recipename = tempdir + "/recipe.bb" 364 with open(recipename, "w") as f: 368 d = bb.parse.handle(recipename, bb.data.createCopy(self.d))[''] 385 with open(recipename, "a+") as f: 392 d = bb.parse.handle(recipename, bb.data.createCopy(self.d))[''] 425 recipename = tempdir + "/recipe_unclosed.bb" 426 with open(recipename, "w") as f: 431 bb.parse.handle(recipename, bb.data.createCopy(self.d))
|
/openbmc/openbmc/poky/bitbake/lib/bblayers/ |
H A D | action.py | 201 (recipename, appendname) = b 262 def apply_append(self, appendname, recipename): argument 264 with open(recipename, 'a') as recipefile:
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | uboot-config.bbclass | 104 recipename = d.getVar("PN") 109 setting up your machine config" % (recipename, FILE)) 145 if 'u-boot' in recipename:
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | cve_check.py | 390 recipename = report["package"][0]["name"] 391 recipe_report = os.path.join(vars["CVE_CHECK_DIR"], recipename + "_cve.json") 397 self.assertEqual(report["package"][0]["name"], recipename)
|
H A D | devtool.py | 2372 recipename = 'i2c-tools' 2374 …recipefile = os.path.join(self.workspacedir, 'recipes', recipename, '%s_%s.bb' % (recipename, reci… 2379 …self.assertExists(os.path.join(self.workspacedir, 'sources', recipename), 'Source directory not cr… 2389 result = runCmd('devtool rename %s %s -V %s' % (recipename, newrecipename, newrecipever)) 2391 …self.assertNotExists(os.path.join(self.workspacedir, 'recipes', recipename), 'Old recipe directory… 2395 checkvars['S'] = '${WORKDIR}/%s-%s' % (recipename, recipever) 2402 result = runCmd('devtool rename %s %s' % (recipename, newrecipename)) 2404 …self.assertNotExists(os.path.join(self.workspacedir, 'recipes', recipename), 'Old recipe directory… 2407 checkvars['S'] = '${WORKDIR}/%s-${PV}' % recipename 2413 …ewrecipefile = os.path.join(self.workspacedir, 'recipes', recipename, '%s_%s.bb' % (recipename, ne… [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | siggen.py | 314 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches): argument 318 if self.twl and not self.twl.search(recipename): 340 recipename = dataCaches[mc].pkg_fn[mcfn] 342 self.tidtopn[tid] = recipename 348 if not self.rundep_check(mcfn, recipename, task, dep, dep_pn, dataCaches): 359 …hecksum_cache.get_checksums(dataCaches[mc].file_checksums[mcfn][task], recipename, self.localdirse… 361 …b.fetch2.get_file_checksums(dataCaches[mc].file_checksums[mcfn][task], recipename, self.localdirse…
|
/openbmc/openbmc/poky/documentation/ref-manual/ |
H A D | qa-checks.rst | 374 - ``<recipename>: The compile log indicates that host include and/or library paths were used. Plea… 385 - ``<recipename>: The install log indicates that host include and/or library paths were used. Plea… 439 - ``Recipe <recipefile> has PN of "<recipename>" which is in OVERRIDES, this can result in unexpec… 481 - ``File '<file>' from <recipename> was already stripped, this will prevent future debugging! [alr… 526 - ``<recipename>: Files/directories were installed but not shipped in any package [installed-vs-sh… 601 - ``<recipename>: SRC_URI uses unstable GitHub archives [src-uri-bad]`` 621 - ``<recipename>: recipe doesn't inherit features_check [unhandled-features-check]`` 634 - ``<recipename>: recipe defines ALTERNATIVE:<packagename> but doesn't inherit update-alternatives.…
|
H A D | devtool-reference.rst | 82 [recipename] [srctree] [fetchuri] 87 …recipename Name for new recipe to add (just name - no version, path or extension). If n…
|
H A D | structure.rst | 628 .. _structure-build-tmp-work-tunearch-recipename-version: 630 ``build/tmp/work/tunearch/recipename/version/``
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | toaster.bbclass | 244 (taskfile, taskname, filename, recipename) = line.strip().split("::") 246 events.append((taskfile, taskname, stats, recipename))
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | debugging.rst | 124 $ bitbake -e recipename 229 $ bitbake -g recipename 234 `recipename`. "Involved" here means that at least one task from the 235 recipe needs to run when building `recipename` from scratch. Targets 275 $ bitbake -g -u taskexp recipename 279 $ bitbake -g -u taskexp_ncurses recipename 282 runtime dependencies for the recipes involved in building recipename. The 304 $ bitbake recipename
|
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
H A D | bitbake-user-manual-metadata.rst | 97 $ bitbake recipename -e | grep VARIABLENAME=\" 1078 recipename do_foo: first 1079 recipename do_foo: second 1080 recipename do_foo: third 1081 recipename do_foo: fourth 1088 You can use the ``bitbake -e recipename`` command to view the final 1136 recipename do_foo: first 1137 recipename do_foo: second 1138 recipename do_foo: third 1140 You can use the ``bitbake -e recipename`` command to view
|
H A D | bitbake-user-manual-intro.rst | 361 [recipename/target ...] 367 recipename/target Execute the specified task (default is 'build') for
|
/openbmc/openbmc/poky/documentation/sdk-manual/ |
H A D | appendix-customizing.rst | 254 ``EXCLUDE_FROM_WORLD:pn-``\ recipename for the recipes you do not 336 You can use ``EXCLUDE_FROM_WORLD:pn-``\ recipename for recipes you want
|
/openbmc/openbmc/poky/documentation/contributor-guide/ |
H A D | recipe-style-guide.rst | 10 ``recipes-category/recipename/recipename_version.bb``. Recipes for related 11 projects may share the same recipe directory. ``recipename`` and ``category``
|