Home
last modified time | relevance | path

Searched refs:recipe (Results 1 – 25 of 716) sorted by relevance

12345678910>>...29

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dbblock.py35 for recipe in recipes:
38 'SIGGEN_LOCKEDSIGS_.+\s\+=\s"%s:%s:.*"' % (recipe, task),
44 % (recipe, task),
61 for recipe in recipes:
65 'SIGGEN_LOCKEDSIGS_.+\s\+=\s"%s:%s:.*"' % (recipe, task),
71 % (recipe, task, result.output),
76 for recipe in recipes:
77 bb_vars = get_bb_vars(["PV"], recipe)
79 recipe_append_file = recipe + "_" + recipe_pv + ".bbappend"
81 os.mkdir(os.path.join(self.testlayer_path, "recipes-test", recipe))
[all …]
H A Drunqemu.py26 self.recipe = 'core-image-minimal'
28 self.image_link_name = get_bb_var('IMAGE_LINK_NAME', self.recipe)
50 bitbake(self.recipe)
56 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
63 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
72 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
79 cmd = "%s %s" % (self.cmd_common, self.recipe)
80 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
88 cmd = "%s %s wic.vmdk" % (self.cmd_common, self.recipe)
89 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:
[all …]
H A Ddevtool.py1695 recipe = 'vulkan-samples'
1696 src_uri = get_bb_var('SRC_URI', recipe)
1697 …'gitsm://', src_uri, 'This test expects the %s recipe to be a git recipe with submodules' % recipe)
1698 oldrecipefile = get_bb_var('FILE', recipe)
1702 self.fail('Recipe directory for %s contains uncommitted changes' % recipe)
1707 result = runCmd('devtool modify %s %s' % (recipe, tempdir))
1711 self.assertIn(recipe, result.output)
1724 runCmd('devtool finish -f %s meta' % recipe)
1726 … self.assertNotIn(recipe, result.output, 'Recipe should have been reset by finish but wasn\'t')
1727 …self.assertNotExists(os.path.join(self.workspacedir, 'recipes', recipe), 'Recipe directory should …
[all …]
/openbmc/openbmc/poky/documentation/ref-manual/
H A Ddevtool-reference.rst42 Beginning work on a recipe:
43 add Add a new recipe
44 modify Modify the source for an existing recipe
45 upgrade Upgrade an existing recipe
48 latest-version Report the latest version of an existing recipe
51 Working on a recipe in the workspace:
52 build Build a recipe
54 rename Rename a recipe file in the workspace
55 edit-recipe Edit a recipe file
56 find-recipe Find a recipe file
[all …]
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dexport.py33 def add_recipe(tar, recipe, data): argument
41 arcname = 'sources/%s' % recipe
56 for recipe in recipes:
57 if recipe not in workspace:
58 … logger.error('Recipe (%s) on %s argument not in the current workspace' % (recipe, param))
83 for recipe in args.include:
84 add_recipe(tar, recipe, workspace[recipe])
85 exported.append(recipe)
87 for recipe, data in workspace.items():
88 if recipe not in args.exclude:
[all …]
H A Dsdk.py247 for recipe in args.recipename:
248 if recipe in workspace:
249 raise DevtoolError('recipe %s is a recipe in your workspace' % recipe)
253 def checkstamp(recipe): argument
254 stampprefix = stampprefixes[recipe]
265 for recipe in args.recipename:
266 rd = parse_recipe(config, tinfoil, recipe, True)
269 stampprefixes[recipe] = '%s.%s' % (rd.getVar('STAMP'), tasks[0])
270 if checkstamp(recipe):
271 logger.info('%s is already installed' % recipe)
[all …]
H A Dsearch.py79 for recipe in tinfoil.all_recipes():
80 if args.fixed_setup and 'nativesdk' in recipe.inherits():
84 if keyword_rc.search(recipe.pn):
87 for prov in recipe.provides:
92 for rprov in recipe.rprovides:
96 if match and not recipe.pn in matches:
97 print_match(recipe.pn)
/openbmc/openbmc/meta-arm/scripts/
H A Dreport-index.html.jinja9 {% for recipe in recipes|sort %}
10 <th>{{ recipe }} ({{releases[recipe]|default("?")}})</th>
18 {% for recipe in recipes|sort %}
19 {% if recipe in data %}
20 {% set details = data[recipe] %}
22 <a href="{{machine}}.html#recipe-{{details.recipe}}">
23 {{ details.recipe if details.recipe != recipe}}
H A Dmachine-summary-overview.txt.jinja6 {% for recipe in recipes|sort %}
7 {% if recipe in data %}
8 {% set details = data[recipe] %}
9 {{ details.recipe }}: {{ details.version }}
/openbmc/openbmc/poky/scripts/lib/
H A Dbuildstats.py187 for recipe in self.values():
188 num += len(recipe.tasks)
195 for recipe in bs_json:
196 if recipe['name'] in buildstats:
198 "package ({})".format(recipe['name']))
199 bsrecipe = BSRecipe(recipe['name'], recipe['epoch'],
200 recipe['version'], recipe['revision'])
201 for task, data in recipe['tasks'].items():
204 buildstats[recipe['name']] = bsrecipe
353 for recipe in common:
[all …]
/openbmc/openbmc/poky/meta/classes/
H A Dcopyleft_filter.bbclass8 # COPYLEFT_LICENSE_INCLUDE recipe, and False for the
22 COPYLEFT_RECIPE_TYPE[doc] = 'The "type" of the current recipe (e.g. target, native, cross)'
26 COPYLEFT_RECIPE_TYPES[doc] = 'Space separated list of recipe types to include'
30 COPYLEFT_AVAILABLE_RECIPE_TYPES[doc] = 'Space separated list of available recipe types'
34 COPYLEFT_PN_INCLUDE[doc] = 'Space separated list of recipe names to include'
38 COPYLEFT_PN_EXCLUDE[doc] = 'Space separated list of recipe names to exclude'
48 Determine if this recipe's sources should be deployed for compliance
56 included, motive = False, 'recipe type "%s" is excluded' % recipe_type
58 included, motive = False, 'recipe did not match anything'
70 included, motive = True, 'recipe has included licenses: %s' % ', '.join(reason)
[all …]
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/
H A Dlayerindexobj.py169 recipe = self.index.recipes[1]
170 self.assertEqual(recipe.id, 1)
171 self.assertEqual(recipe.layerbranch_id, 1)
172 self.assertEqual(recipe.layerbranch, self.index.layerBranches[1])
173 self.assertEqual(recipe.layer_id, 1)
174 self.assertEqual(recipe.layer, self.index.layerItems[1])
175 self.assertEqual(recipe.filename, 'test_git.bb')
176 self.assertEqual(recipe.filepath, 'recipes-test')
177 self.assertEqual(recipe.fullpath, 'recipes-test/test_git.bb')
178 self.assertEqual(recipe.summary, "")
[all …]
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dbblock.rst14 For example, modifying a recipe can lead to rebuilding its native
15 counterpart, which might prove unnecessary. Editing the ``python3`` recipe,
27 the recipe metadata no longer directly reflect the output. Use this feature
35 To lock a recipe, use::
37 $ bblock recipe
43 Locking a recipe means locking all tasks of the recipe. If you need to
47 $ bblock -t task1,task2 recipe
53 To unlock a recipe, use the ``-r`` option::
55 $ bblock -r recipe
61 Unlocking a recipe means unlocking all tasks of the recipe. If you need to
[all …]
H A Dnew-recipe.rst8 system requires a recipe to define the component. This section describes
9 how to create, write, and test a new recipe.
14 information about recipe naming issues, see the
21 The following figure shows the basic process for creating a new recipe.
24 .. image:: figures/recipe-workflow.png
31 You can always write a recipe from scratch. However, there are three choices
32 that can help you quickly get started with a new recipe:
34 - ``devtool add``: A command that assists in creating a recipe and an
38 automates creation of a base recipe based on the source files.
40 - *Existing Recipes:* Location and modification of an existing recipe
[all …]
H A Dupgrading-recipes.rst10 While there are several methods to upgrade a recipe, you might
11 consider checking on the upgrade status of a recipe first. You can do so
13 ":ref:`devtool-checking-on-the-upgrade-status-of-a-recipe`"
17 recipe. You can use the Automated Upgrade Helper (AUH) to set up
20 you can manually upgrade a recipe by editing the recipe itself.
34 to recipe maintainers. Finally, AUH creates Git commits with appropriate
44 usually results because custom patches carried by the recipe
113 ``upgrade-helper/work/recipe/buildhistory-diff.txt`` file found in
154 - *Upgrading a Specific Recipe:* To upgrade a specific recipe, use the
159 For example, this command upgrades the ``xmodmap`` recipe::
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dimage-manifest72 recipe = line.split(':', 1)[1].strip()
73 return recipe
82 recipe = pkg2recipe(tinfoil,pkg)
83 if recipe:
84 if not recipe in recipelist:
85 recipelist.append(recipe)
95 for recipe in sorted(recipelist):
96 print('%s' % recipe)
181 recipe = pkg2recipe(tinfoil, args.package)
182 print(' %s package provided by %s' % (args.package, recipe))
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Drecipedetails.js12 var recipe = {id: $(this).data('recipe'), name: null} class in AnonymousFunction93f83cd10100
13 newCustomImageModalSetRecipes([recipe]);
20 libtoaster.addRmLayer(ctx.recipe.layer_version,
23 var msg = libtoaster.makeLayerAddRmAlertMsg(ctx.recipe.layer_version,
34 if (ctx.recipe.totalPackages === 0){
46 libtoaster.startABuild(null, ctx.recipe.name,
H A DlayerBtn.js61 var recipe = $(this).data('recipe-name');
63 libtoaster.startABuild(null, recipe,
73 var recipe = $(this).data('recipe-name');
75 libtoaster.setDefaultImage(null, recipe,
91 var recipe = {id: $(this).data('recipe'), name: null} class in AnonymousFunctiond4ef1d940b00
92 newCustomImageModalSetRecipes([recipe]);
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dapi.py241 for recipe in recipes_list:
242 for recipe in recipes_list.split('\n'):
243 recipe_path = recipe[recipe.rfind('recipes-'):]
244 recipe_name = recipe[recipe.rfind('/')+1:].replace('.bb','')
606 recipe, r_created = CustomImageRecipe.objects.get_or_create(
617 recipe.file_path = request.POST["name"]
618 recipe.license = "MIT"
619 recipe.version = "0.1"
620 recipe.save()
629 Q(target=recipe.name))).last()
[all …]
/openbmc/openbmc/poky/documentation/migration-guides/
H A Dmigration-2.4.rst87 from the main ``go`` recipe into a separate ``go-runtime`` recipe.
94 - ``acpitests``: This recipe is not maintained.
99 - ``bdwgc``: Nothing in OpenEmbedded-Core requires this recipe. It
102 - ``byacc``: This recipe was only needed by rpm 5.x and has moved to
105 - ``gcc (5.4)``: The 5.4 series dropped the recipe in favor of 6.3 /
111 recipe has been removed.
113 - ``guile``: This recipe was only needed by ``autogen-native`` and
114 ``remake``. The recipe is no longer needed by either of these
117 - ``libclass-isa-perl``: This recipe was previously needed for LSB 4,
120 - ``libdumpvalue-perl``: This recipe was previously needed for LSB 4,
[all …]
H A Dmigration-general.rst27 metadata. For example, suppose you have a recipe in your layer that
28 is a customized version of a core recipe copied from the earlier
31 perhaps an include file used by the recipe) could have changed in a
33 removed from an include file and the customized recipe tries to call
36 You could "forward-port" all your customizations in your recipe so
43 recipe. Doing so isolates your changes from the main recipe, making
46 newer or older version of a recipe in another layer.
54 particular version of the recipe (i.e. its name does not use the %
55 wildcard) and the version of the recipe to which it is appending has
57 match the name of the recipe file. A mismatch between an append file
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/heaptrack/
H A Dheaptrack_1.2.0.bb42recipe-sysroot-native/usr/bin/aarch64-webos-linux/aarch64-webos-linux-gcc --sysroot=/OE/lge/build/…
44recipe-sysroot-native/usr/bin/aarch64-webos-linux/aarch64-webos-linux-gcc --sysroot=/OE/lge/build/…
51 # In file included from ../../../../recipe-sysroot/usr/include/libunwind-aarch64.h:232,
52 # from ../../../../recipe-sysroot/usr/include/libunwind-64.h:7,
53 # from ../../../../recipe-sysroot/usr/include/libunwind.h:27,
55 # ../../../../recipe-sysroot/usr/include/libunwind-common.h:290:27: note: expected 'void **…
/openbmc/openbmc/poky/documentation/sdk-manual/
H A Dextensible.rst248 - *devtool upgrade*: Updates an existing recipe so that you can
252 ``devtool``. When you use ``devtool add``, a recipe is automatically
253 created. When you use ``devtool modify``, the specified existing recipe
256 the recipe a source tree that is under your control is used in order to
266 The ``devtool add`` command generates a new recipe based on existing
283 scenarios by which you could use ``devtool add`` to generate a recipe
290 access to the code, a recipe, and a controlled area in which to do
303 $ devtool add recipe fetchuri
307 folder. The command then creates a recipe named recipe and a
309 recipe, the command makes an attempt to determine the recipe name.
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/sdkext/cases/
H A Ddevtool.py72 recipe = "test-dbus-wait"
74 self._run('devtool add %s https://git.yoctoproject.org/git/dbus-wait' % (recipe) )
76 self._run('devtool build %s' % recipe)
78 self._run('devtool reset %s' % recipe)
82 recipe = 'kernel-module-hello-world'
83 self._run('devtool add %s %s' % (recipe, docfile) )
85 self._run('devtool build %s' % recipe)
87 self._run('devtool reset %s' % recipe)
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dmisc.py119 recipe = cmd
120 if recipe in NATIVE_RECIPES:
121 recipe = NATIVE_RECIPES[recipe]
123 if provided and "%s-native" % recipe in provided:
168 recipe = NATIVE_RECIPES.get(prog)
169 if recipe:
171 "build it with 'bitbake wic-tools' and try again.\n" % recipe

12345678910>>...29