/openbmc/openbmc/poky/scripts/ |
H A D | devtool | 19 basepath = '' variable 155 tinfoil = setup_tinfoil(config_only=True, basepath=basepath) 212 global basepath 245 if global_args.basepath: 247 basepath = global_args.basepath 251 pth = basepath 255 basepath = pth 260 basepath = os.environ.get('BUILDDIR') 261 if not basepath: 265 logger.debug('Using basepath %s' % basepath) [all …]
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | devtool | 19 basepath = '' variable 155 tinfoil = setup_tinfoil(config_only=True, basepath=basepath) 212 global basepath 245 if global_args.basepath: 247 basepath = global_args.basepath 251 pth = basepath 255 basepath = pth 260 basepath = os.environ.get('BUILDDIR') 261 if not basepath: 265 logger.debug('Using basepath %s' % basepath) [all …]
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | sdk.py | 84 def check_manifest(fn, basepath): argument 99 def sdk_update(args, config, basepath, workspace): argument 107 logger.debug("basepath = %s" % basepath) 119 layers_dir = os.path.join(basepath, 'layers') 120 conf_dir = os.path.join(basepath, 'conf') 123 tinfoil = setup_tinfoil(config_only=True, basepath=basepath) 141 changedfiles = check_manifest(tmpmanifest, basepath) 148 if os.path.exists(os.path.join(basepath, 'layers/.git')): 198 destfile = os.path.join(basepath, changedfile) 241 def sdk_install(args, config, basepath, workspace): argument [all …]
|
H A D | utilcmds.py | 23 def _find_recipe_path(args, config, basepath, workspace): argument 31 tinfoil = setup_tinfoil(config_only=False, basepath=basepath) 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 59 tinfoil = setup_tinfoil(config_only=False, basepath=basepath) 87 stdout, _ = exec_build_env_command(config.init_path, basepath,
|
H A D | package.py | 17 def package(args, config, basepath, workspace): argument 21 tinfoil = setup_tinfoil(basepath=basepath, config_only=True) 33 …exec_build_env_command(config.init_path, basepath, 'bitbake -c %s %s' % (package_task, args.recipe…
|
H A D | build_image.py | 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 78 tinfoil = setup_tinfoil(basepath=basepath) 139 exec_build_env_command(config.init_path, basepath,
|
H A D | runqemu.py | 19 def runqemu(args, config, basepath, workspace): argument 22 tinfoil = setup_tinfoil(config_only=True, basepath=basepath) 48 …exec_build_env_command(config.init_path, basepath, 'runqemu %s %s %s' % (machine, imagename, " ".j…
|
H A D | menuconfig.py | 33 def menuconfig(args, config, basepath, workspace): argument 41 tinfoil = setup_tinfoil(basepath=basepath) 71 exec_build_env_command(config.init_path, basepath, 'bitbake -c menuconfig %s' % pn, watch=True)
|
H A D | standard.py | 31 def add(args, config, basepath, workspace): argument 221 tinfoil = setup_tinfoil(config_only=True, basepath=basepath) 419 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 439 def sync(args, config, basepath, workspace): argument 443 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 796 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 1064 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 1645 if os.path.isabs(basepath): 1801 _replace_srcuri_entry(srcuri, basepath, srcuri_entry(basepath, patchdir_param)) 1956 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) [all …]
|
H A D | build.py | 44 def build(args, config, basepath, workspace): argument 47 tinfoil = setup_tinfoil(config_only=False, basepath=basepath) 74 … exec_build_env_command(config.init_path, basepath, 'bitbake %s' % ' '.join(bbargs), watch=True)
|
H A D | build_sdk.py | 22 def build_sdk(args, config, basepath, workspace): argument 34 basepath,
|
H A D | search.py | 19 def search(args, config, basepath, workspace): argument 22 tinfoil = setup_tinfoil(config_only=False, basepath=basepath)
|
H A D | import.py | 21 def devimport(args, config, basepath, workspace): argument 59 tinfoil = setup_tinfoil(config_only=False, basepath=basepath)
|
H A D | __init__.py | 96 def setup_tinfoil(config_only=False, basepath=None, tracking=False): argument 101 if basepath: 102 os.chdir(basepath) 337 def update_unlockedsigs(basepath, workspace, fixed_setup, extra=None): argument 348 confdir = os.path.join(basepath, 'conf')
|
H A D | upgrade.py | 537 def upgrade(args, config, basepath, workspace): argument 547 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 594 …standard._extract_source(srctree, False, 'devtool-orig', False, config, basepath, workspace, args.… 612 update_unlockedsigs(basepath, workspace, args.fixed_setup, [pn]) 625 def latest_version(args, config, basepath, workspace): argument 627 tinfoil = setup_tinfoil(basepath=basepath, tracking=True) 645 def check_upgrade_status(args, config, basepath, workspace): argument
|
H A D | deploy.py | 136 def deploy(args, config, basepath, workspace): argument 142 tinfoil = setup_tinfoil(basepath=basepath) 282 def undeploy(args, config, basepath, workspace): argument
|
/openbmc/openbmc/poky/scripts/lib/ |
H A D | scriptpath.py | 14 basepath = os.path.abspath(os.path.dirname(__file__) + '/../..') 15 newpath = basepath + '/meta/lib' 19 basepath = os.path.abspath(os.path.dirname(__file__) + '/../..') 21 if os.path.exists(basepath + '/bitbake/lib/bb'): 22 bitbakepath = basepath + '/bitbake'
|
/openbmc/openbmc/poky/meta-selftest/lib/devtool/ |
H A D | bbpath.py | 13 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 D | test.py | 3 def selftest_reverse(args, config, basepath, workspace): argument
|
/openbmc/linux/scripts/ |
H A D | decode_stacktrace.sh | 36 basepath="auto" 54 basepath=${2-auto} 201 code=$(while read -r line; do echo "${line#$basepath/}"; done <<< "$code") 244 if [[ $basepath == "auto" && $vmlinux != "" ]] ; then 248 basepath=${symbol#kernel_init (} 249 basepath=${basepath%/init/main.c:*)}
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | yoctotestresultsquerytests.py | 13 basepath = os.path.abspath(os.path.dirname(__file__) + '/../../../../../') variable 14 lib_path = basepath + '/scripts/lib' 28 get_sha1(basepath, data["input"]), data["expected"])
|
H A D | resulttooltests.py | 9 basepath = os.path.abspath(os.path.dirname(__file__) + '/../../../../../') variable 10 lib_path = basepath + '/scripts/lib'
|
H A D | gitarchivetests.py | 9 basepath = os.path.abspath(os.path.dirname(__file__) + '/../../../../../') variable 10 lib_path = basepath + '/scripts/lib'
|
/openbmc/openbmc/poky/documentation/tools/ |
H A D | update-documentation-conf | 39 if not os.path.isdir(args.basepath): 43 doc_conf = os.path.join(args.basepath, 'meta', 'conf', 'documentation.conf')
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | local.py | 34 ud.basepath = ud.decodedurl
|