Home
last modified time | relevance | path

Searched refs:tasks (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dbblock.py24 def unlock_recipes(self, recipes=None, tasks=None): argument
28 if tasks:
29 cmd += " -t " + ",".join(tasks)
36 for task in tasks:
50 def lock_recipes(self, recipes, tasks=None): argument
52 if tasks:
53 cmd += " -t " + ",".join(tasks)
62 if tasks:
63 for task in tasks:
74 def modify_tasks(self, recipes, tasks): argument
[all …]
H A Dbbtests.py256 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
258 for task in tasks:
260 'Executed tasks were: %s' % (task, str(tasks)))
269 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
271 for task in tasks:
273 'Executed tasks were: %s' % (task, str(tasks)))
277 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
279 self.assertFalse(tasks, 'Tasks %s ran when they should not have' % (str(tasks)))
286 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
288 for task in tasks:
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Drunqueue.py47 tasks = []
51 tasks = [line.rstrip() for line in f]
54 return tasks
60 tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid)
62 self.assertEqual(set(tasks), set(expected))
70 tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid)
74 self.assertEqual(set(tasks), set(expected))
82 tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid)
85 self.assertEqual(set(tasks), set(expected))
93 tasks = self.run_bitbakecmd(cmd, tempdir, sstatevalid)
[all …]
/openbmc/openbmc/poky/documentation/ref-manual/
H A Dtasks.rst8 tasks to complete configuring, compiling, and packaging software. This
9 chapter provides a reference of the tasks defined in the OpenEmbedded
15 The following sections describe normal tasks associated with building a
16 recipe. For more information on tasks and dependencies, see the
17 ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:tasks`" and
21 .. _ref-tasks-build:
27 tasks required to build a recipe.
29 .. _ref-tasks-compile:
39 If no such file is found, the :ref:`ref-tasks-compile` task does nothing.
41 .. _ref-tasks-compile_ptest_base:
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/builds/
H A Dtest_core_image_min.py52 tasks = Task.objects.filter(
59 for task in tasks:
73 tasks = Task.objects.filter(outcome=2).values('id', 'sstate_result')
75 for task in tasks:
86 tasks = Task.objects.filter(
92 for task in tasks:
106 tasks = Task.objects.filter(
110 for task in tasks:
121 tasks = Task.objects.filter(
125 for task in tasks:
[all …]
/openbmc/openbmc/poky/scripts/lib/
H A Dbuildstats.py126 def __init__(self, tasks=None): argument
127 self._tasks = tasks or []
159 self.tasks = {}
166 if set(self.tasks.keys()) != set(bsrecipe.tasks.keys()):
170 for taskname, taskdata in bsrecipe.tasks.items():
171 if not isinstance(self.tasks[taskname], BSTaskAggregate):
172 self.tasks[taskname] = BSTaskAggregate([self.tasks[taskname]])
173 self.tasks[taskname].append(taskdata)
188 num += len(recipe.tasks)
202 bsrecipe.tasks[task] = BSTask(data)
[all …]
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/
H A D0009-invoking-fsck-with-infinite-timeout.patch13 blivet/tasks/fsck.py | 2 +-
16 diff --git a/blivet/tasks/fsck.py b/blivet/tasks/fsck.py
18 --- a/blivet/tasks/fsck.py
19 +++ b/blivet/tasks/fsck.py
H A D0010-invoking-mkfs-with-infinite-timeout.patch17 blivet/tasks/fsmkfs.py | 2 +-
20 diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py
22 --- a/blivet/tasks/fsmkfs.py
23 +++ b/blivet/tasks/fsmkfs.py
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dbblock.rst7 unless BitBake determines that specific tasks do not require rebuilding.
8 At startup, it computes a signature for all tasks, based on the task's input.
19 To prevent this, use ``bblock`` to lock specific tasks or recipes to
32 Locking tasks and recipes
43 Locking a recipe means locking all tasks of the recipe. If you need to
44 lock only particular tasks, use the `-t` option with a comma-separated
45 list of tasks::
50 Unlocking tasks and recipes
61 Unlocking a recipe means unlocking all tasks of the recipe. If you need to
62 unlock only particular tasks use the ``-t`` option with a comma-separated
[all …]
H A Dmulticonfig.rst130 :ref:`ref-tasks-image` task in the
132 :ref:`ref-tasks-rootfs` task of the
148 task on which the :ref:`ref-tasks-image` task in the recipe depends is the
149 :ref:`ref-tasks-rootfs` task from the ``core-image-minimal`` recipe associated
157 This command executes all the tasks needed to create the
159 dependency, BitBake also executes through the :ref:`ref-tasks-rootfs` task for the
191 :ref:`ref-tasks-install` and :ref:`ref-tasks-deploy`, assuming the value of
194 The :ref:`ref-tasks-install` and :ref:`ref-tasks-deploy` tasks should look
256 toolchain. The building tasks may vary depending on the nature of the firmware.
279 The above will ensure that when the :ref:`ref-tasks-compile` task of
[all …]
H A Ddebugging.rst31 - ":ref:`dev-manual/debugging:viewing logs from failed tasks`" describes
32 how to find and view logs from tasks that failed during the build
44 - ":ref:`dev-manual/debugging:viewing dependencies between recipes and tasks`"
53 - ":ref:`dev-manual/debugging:running specific tasks`" describes
55 to run specific tasks in the build chain. It can be useful to run
56 tasks "out-of-order" when trying isolate build issues.
92 :ref:`ref-tasks-compile` task of the
136 will not be visible to other tasks.
155 system (including the behavior of the :ref:`ref-manual/tasks:normal recipe build tasks`) is
194 :ref:`ref-tasks-package` task
[all …]
H A Dpython-development-shell.rst10 invoke the ``pydevshell`` task, all tasks up to and including
11 :ref:`ref-tasks-patch` are run for the
14 BitBake tasks, in particular, the data store 'd'. So, commands such as
/openbmc/openbmc/poky/scripts/
H A Dbblock32 def getTaskSignatures(tinfoil, pn, tasks): argument
41 ret = tinfoil.run_command("getTaskSignatures", pn, tasks)
81 def bblockReset(lockfile, pns, package_archs, tasks): argument
99 if tasks and not any(element in line for element in tasks):
143 bblockReset(lockfile, global_args.pn, package_archs, global_args.tasks)
160 sigs = getTaskSignatures(tinfoil, [pn], global_args.tasks)
H A Doe-check-sstate26 def translate_virtualfns(tasks): argument
34 for task in tasks:
57 tasks = []
61 tasks.append(res.group(1))
62 outtasks = translate_virtualfns(tasks)
H A Dbuildstats-summary59 tasks = []
61 for task, stats in recipe.tasks.items():
68 tasks.append(t)
70 tasks.sort(key=lambda t: getattr(t, args.sort.name))
75 for t in tasks:
/openbmc/openbmc/poky/meta-poky/conf/templates/default/
H A Dconf-notes.txt17 - 'devtool' and 'recipetool' handle common recipe tasks
18 - 'bitbake-layers' handles common layer tasks
19 - 'oe-pkgdata-util' handles common target package tasks
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py86 for tune, tasks in tune2tasks.items():
87 for task in tasks:
134 tasks = tunes[tune]
151 for task in sorted(tasks.keys(), key=task_key):
152 signatures = tasks[task]
/openbmc/bmcweb/redfish-core/lib/
H A Dtask.hpp58 static std::deque<std::shared_ptr<struct TaskData>> tasks; variable
140 if (tasks.size() >= maxTaskCount) in createTask()
147 tasks.erase(last); in createTask()
150 return tasks.emplace_back(std::make_shared<MakeSharedHelper>( in createTask()
163 auto it = std::ranges::find_if(tasks, [](const auto& task) { in getTaskToRemove()
168 return (it != tasks.end()) ? it : tasks.begin(); in getTaskToRemove()
382 task::tasks, in requestRoutesTaskMonitor()
394 if (find == task::tasks.end()) in requestRoutesTaskMonitor()
425 task::tasks, in requestRoutesTask()
437 if (find == task::tasks.end()) in requestRoutesTask()
[all …]
/openbmc/openbmc/poky/meta/classes/
H A Dbuildstats-summary.bbclass23 tasks = os.listdir(taskdir)
26 if t in tasks:
28 elif t + '_setscene' in tasks:
/openbmc/openbmc/poky/documentation/overview-manual/
H A Dconcepts.rst52 a list of tasks from it, and then executing those tasks.
78 BitBake also tries to execute any dependent tasks first. So for example,
573 cases, a repository is cloned or checked out. The :ref:`ref-tasks-fetch` task
650 :ref:`do_package_write_* <ref-tasks-package_write_deb>`
651 tasks to generate packages and place them into the package holding area
653 ":ref:`ref-tasks-package_write_deb`",
654 ":ref:`ref-tasks-package_write_ipk`",
656 ":ref:`ref-tasks-package_write_rpm`"
689 The :ref:`ref-tasks-fetch` and :ref:`ref-tasks-unpack` tasks fetch
697 the signature for the :ref:`ref-tasks-fetch` task. If any local
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/parse/
H A Dast.py261 def __init__(self, filename, lineno, tasks, before, after): argument
263 self.tasks = tasks
268 tasks = self.tasks.split()
269 for task in tasks:
273 def __init__(self, filename, lineno, tasks): argument
275 self.tasks = tasks
278 tasks = data.expand(self.tasks).split()
279 for task in tasks:
411 def handleAddTask(statements, filename, lineno, tasks, before, after): argument
412 statements.append(AddTaskNode(filename, lineno, tasks, before, after))
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/
H A Dserv.py319 tasks = self.server.start(self.loop)
321 return tasks
327 def _serve_forever(self, tasks): argument
334 self.loop.run_until_complete(asyncio.gather(*tasks))
345 tasks = self.start()
346 self._serve_forever(tasks)
377 tasks = self.start()
389 self._serve_forever(tasks)
/openbmc/docs/
H A DREADME.md23 tasks
31 development tasks
43 - [host-management.md](host-management.md): Performing host management tasks
/openbmc/openbmc/poky/documentation/migration-guides/
H A Dmigration-5.1.rst27 should be changed to :term:`S`. These are commonly in :ref:`ref-tasks-compile`,
28 :ref:`ref-tasks-compile`, :ref:`ref-tasks-install` and :term:`LIC_FILES_CHKSUM`.
35 These are commonly in :ref:`ref-tasks-compile` and :ref:`ref-tasks-install`
46 Files from :ref:`ref-tasks-unpack` now unpack to ``WORKDIR/sources-unpack/``
50 subdirectory exists in ``sources-unpack`` after :ref:`ref-tasks-unpack` runs,
56 :ref:`ref-tasks-unpack` task output from :term:`WORKDIR`.
107 - After dropping the custom :ref:`ref-tasks-unpack` from the
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-execution.rst14 execute single tasks, compile single recipe files, capture or clear
94 tasks. See the
100 recipes and tasks that are executed.
218 tasks that the recipe defines and a set of data consisting of keys and
219 values as well as dependency information about the tasks.
361 Each target BitBake builds consists of multiple tasks such as ``fetch``,
384 BitBake can now calculate exactly what tasks it needs to run and in what
386 :ref:`bitbake-user-manual/bitbake-user-manual-execution:executing tasks`
392 variable. BitBake continues to fork threads as long as there are tasks
393 ready to run, those tasks have all their dependencies met, and the
[all …]

12345678910>>...14