Home
last modified time | relevance | path

Searched refs:workspace (Results 1 – 25 of 66) sorted by relevance

123

/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dexport.py22 def export(args, config, basepath, workspace): argument
29 fd.write(json.dumps((config.workspace_path, workspace)))
51 if not workspace:
57 if recipe not in workspace:
76 if not len(set(workspace.keys()).difference(set(args.exclude))):
84 add_recipe(tar, recipe, workspace[recipe])
87 for recipe, data in workspace.items():
H A Dbuild_image.py22 def _get_packages(tinfoil, workspace, config): argument
25 for recipe in workspace:
35 def build_image(args, config, basepath, workspace): argument
53 result, outputdir = build_image_task(config, basepath, workspace, image, add_packages)
65 def build_image_task(config, basepath, workspace, image, add_packages=None, task=None, extra_append… argument
98 if workspace or add_packages:
102 packages = _get_packages(tinfoil, workspace, config)
106 if not packages and not add_packages and workspace:
H A Dutilcmds.py23 def _find_recipe_path(args, config, basepath, workspace): argument
26 if args.recipename in workspace:
27 recipefile = workspace[args.recipename]['recipefile']
42 def find_recipe(args, config, basepath, workspace): argument
44 recipefile = _find_recipe_path(args, config, basepath, workspace)
49 def edit_recipe(args, config, basepath, workspace): argument
51 return scriptutils.run_editor(_find_recipe_path(args, config, basepath, workspace), logger)
54 def configure_help(args, config, basepath, workspace): argument
58 check_workspace_recipe(workspace, args.recipename)
H A Dbuild_sdk.py15 def build_sdk(args, config, basepath, workspace): argument
28 workspace,
H A Dbuild.py44 def build(args, config, basepath, workspace): argument
46 workspacepn = check_workspace_recipe(workspace, args.recipename, bbclassextend=True)
64 bbappend = workspace[workspacepn]['bbappend']
H A Dpackage.py17 def package(args, config, basepath, workspace): argument
19 check_workspace_recipe(workspace, args.recipename)
H A Dstandard.py33 def add(args, config, basepath, workspace): argument
82 if args.recipename in workspace:
177 if recipename in workspace:
432 def extract(args, config, basepath, workspace): argument
444 …t_source(srctree, args.keep_temp, args.branch, False, config, basepath, workspace, args.fixed_setu…
454 def sync(args, config, basepath, workspace): argument
466 …ct_source(srctree, args.keep_temp, args.branch, True, config, basepath, workspace, args.fixed_setu…
476 def _extract_source(srctree, keep_temp, devbranch, sync, config, basepath, workspace, fixed_setup, … argument
573 update_unlockedsigs(basepath, workspace, fixed_setup, [pn])
755 def modify(args, config, basepath, workspace): argument
[all …]
H A Dmenuconfig.py30 def menuconfig(args, config, basepath, workspace): argument
43 check_workspace_recipe(workspace, args.component)
H A Dide_sdk.py84 def _initialize(self, config, workspace, tinfoil): argument
95 def initialize(self, config, workspace, tinfoil): argument
97 self._initialize(config, workspace, tinfoil)
124 def initialize(self, config, workspace, tinfoil): argument
125 super()._initialize(config, workspace, tinfoil)
325 def initialize(self, config, workspace, tinfoil): argument
333 workspace, self.name, bbclassextend=True)
334 self.srctree = workspace[workspacepn]['srctree']
338 self.bbappend = workspace[workspacepn]['bbappend']
774 def ide_setup(args, config, basepath, workspace): argument
[all …]
H A Dupgrade.py93 def _write_append(rc, srctreebase, srctree, same_dir, no_same_dir, revs, copied, workspace, d): argument
98 appendpath = os.path.join(workspace, 'appends')
336 def _create_new_recipe(newpv, checksums, srcrev, srcbranch, srcsubdir_old, srcsubdir_new, workspace argument
340 path = os.path.join(workspace, 'recipes', pn)
547 def upgrade(args, config, basepath, workspace): argument
550 if args.recipename in workspace:
566 if pn in workspace:
604 …extract_source(srctree, False, 'devtool-orig', False, config, basepath, workspace, args.fixed_setu…
624 update_unlockedsigs(basepath, workspace, args.fixed_setup, [pn])
637 def latest_version(args, config, basepath, workspace): argument
[all …]
H A D__init__.py145 def check_workspace_recipe(workspace, pn, checksrc=True, bbclassextend=False): argument
153 for recipe, value in workspace.items():
167 srctree = workspace[workspacepn]['srctree']
337 def update_unlockedsigs(basepath, workspace, fixed_setup, extra=None): argument
362 newunlocked = sorted(list(workspace.keys()) + extra)
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/libwnck/files/
H A Def0e40d59c32d7ebeb94d242436e3144cefc174a.patch9 libwnck/workspace-accessible-factory.h | 2 +-
25 diff --git a/libwnck/workspace-accessible-factory.h b/libwnck/workspace-accessible-factory.h
27 --- a/libwnck/workspace-accessible-factory.h
28 +++ b/libwnck/workspace-accessible-factory.h
/openbmc/openbmc/poky/meta-selftest/lib/devtool/
H A Dbbpath.py13 def print_name(args, config, basepath, workspace): argument
16 def print_bbdir(args, config, basepath, workspace): argument
19 def print_registered(args, config, basepath, workspace): argument
23 def multiloaded(args, config, basepath, workspace): argument
H A Dtest.py3 def selftest_reverse(args, config, basepath, workspace): argument
/openbmc/openbmc/poky/documentation/ref-manual/
H A Ddevtool-reference.rst47 status Show workspace status
51 Working on a recipe in the workspace:
54 rename Rename a recipe file in the workspace
59 reset Remove a recipe from your workspace
60 finish Finish working on a recipe in your workspace
64 build-image Build image including workspace recipe packages
66 create-workspace Set up workspace in an alternative location
67 import Import exported tar archive into workspace
68 export Export workspace into a tar archive
84 …Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote…
[all …]
/openbmc/qemu/scripts/rust/
H A Drustc_args.py46 def __init__(self, path: Optional[str], workspace: Optional[str]):
53 if workspace is not None:
54 with open(workspace, 'rb') as f:
203 if args.workspace:
204 workspace_cargo_toml = Path(args.workspace, "Cargo.toml").resolve()
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/apache2/apache2/
H A D0006-apache2-fix-the-race-issue-of-parallel-installation.patch9 | mkdir: cannot create directory `/home/mypc/workspace/poky/build_p4080ds_release/tmp/work/ppce500m…
11 | mkdir: cannot create directory `/home/mypc/workspace/poky/build_p4080ds_release/tmp/work/ppce500m…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/geis/
H A D0001-libgeis-Compare-the-first-character-of-string-to-nul.patch11 | ../../../../../../../workspace/sources/geis/libgeis/geis_v1.c: In function '_v1_subscribe_device':
12 | ../../../../../../../workspace/sources/geis/libgeis/geis_v1.c:613:20: error: comparison between p…
/openbmc/openbmc/poky/scripts/esdk-tools/
H A Ddevtool67 self.workspace_path = self.get('General', 'workspace_path', os.path.join(self.basepath, 'workspace'))
91 workspace = {}
94 logger.error("workspace layer not set up")
97 logger.info('Creating workspace layer in %s' % context.config.workspace_path)
102 logger.debug('Reading workspace in %s' % context.config.workspace_path)
113 # Find the recipe file within the workspace, if any
133 workspace[pn] = pnvalues
135 return workspace argument
141 workspacedir = os.path.abspath(os.path.join(basepath, 'workspace'))
154 logger.info('Specified workspace alread
20 workspace = {} global() variable
[all...]
/openbmc/openbmc/poky/meta/recipes-support/gpgme/gpgme/
H A D0001-posix-io.c-Use-off_t-instead-of-off64_t.patch13 ../../../../../../../../workspace/sources/gpgme/src/posix-io.c:77:3: error: unknown type name 'ino6…
18 ../../../../../../../../workspace/sources/gpgme/src/posix-io.c:78:3: error: unknown type name 'off6…
/openbmc/openbmc/poky/scripts/
H A Ddevtool91 workspace = {}
133 workspace[pn] = pnvalues
135 return workspace
335 workspace = {}
337 workspace = read_workspace(basepath, context)
338 ret = args.func(args, config, basepath, workspace)
/openbmc/openbmc/poky/documentation/dev-manual/
H A Ddevtool.rst16 :ref:`devtool-the-workspace-layer-structure`
18 to allow you to extract source code into both the workspace or a
47 to the default workspace --- you do not want the files in some
48 specific location outside of the workspace. Thus, everything you
49 need will be located in the workspace::
56 corresponding append file in the workspace. If you do not provide
62 local area --- this time outside of the default workspace.
71 extracted code outside of the workspace. You need to specify an
79 Within workspace, ``devtool`` creates a recipe named recipe along
84 ``devtool`` workspace.
[all …]
/openbmc/openbmc/poky/meta/recipes-graphics/piglit/piglit/
H A D0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch8 | In file included from /srv/storage/alex/yocto/build-64/workspace/sources/piglit/tests/egl/spec/eg…
9 | /srv/storage/alex/yocto/build-64/workspace/sources/piglit/tests/egl/spec/egl_ext_surface_compress…
/openbmc/docs/testing/
H A Drun-test-docker.md10 1. Create a workspace directory.
14 2. Change directory to workspace created.
42 1. Change directory to HOME workspace.
/openbmc/qemu/roms/
H A Dedk2-build.py250 workspace = os.getcwd()
251 packages = [ workspace, ]
262 if coredir != workspace:
285 os.environ['WORKSPACE'] = workspace

123