Lines Matching refs:basepath
31 def add(args, config, basepath, workspace): argument
162 …stdout, _ = exec_build_env_command(config.init_path, basepath, 'recipetool --color=%s create --dev…
219 tinfoil = setup_tinfoil(config_only=True, basepath=basepath)
408 def extract(args, config, basepath, workspace): argument
412 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
422 … = _extract_source(srctree, args.keep_temp, args.branch, False, config, basepath, workspace, args.…
432 def sync(args, config, basepath, workspace): argument
436 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
446 …_ = _extract_source(srctree, args.keep_temp, args.branch, True, config, basepath, workspace, args.…
486 def _extract_source(srctree, keep_temp, devbranch, sync, config, basepath, workspace, fixed_setup, … argument
580 update_unlockedsigs(basepath, workspace, fixed_setup, [pn])
778 def modify(args, config, basepath, workspace): argument
789 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
879 … = _extract_source(srctree, args.keep_temp, args.branch, False, config, basepath, workspace, args.…
985 update_unlockedsigs(basepath, workspace, args.fixed_setup, [pn])
997 def rename(args, config, basepath, workspace): argument
1028 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
1582 for basepath, path in upd_f.items():
1583 logger.info('Updating file %s%s' % (basepath, dry_run_suffix))
1584 if os.path.isabs(basepath):
1587 _copy_file(basepath, path, dry_run_outdir=dry_run_outdir, base_outdir=recipedir)
1589 _move_file(os.path.join(local_files_dir, basepath), path,
1592 for basepath, path in new_f.items():
1593 logger.info('Adding new file %s%s' % (basepath, dry_run_suffix))
1594 _move_file(os.path.join(local_files_dir, basepath),
1595 os.path.join(files_dir, basepath),
1598 srcuri.append('file://%s' % basepath)
1636 return 'file://%s%s' % (basepath, paramstr)
1701 for basepath, path in upd_f.items():
1702 logger.info('Updating file %s' % basepath)
1703 if os.path.isabs(basepath):
1706 _copy_file(basepath, path,
1709 _move_file(os.path.join(local_files_dir, basepath), path,
1712 for basepath, path in upd_p.items():
1713 patchfn = os.path.join(patches_dir, basepath)
1717 logger.info('Replacing remote patch %s with updated local version' % basepath)
1718 path = os.path.join(files_dir, basepath)
1719 _replace_srcuri_entry(srcuri, basepath, srcuri_entry(basepath))
1722 logger.info('Updating patch %s%s' % (basepath, dry_run_suffix))
1727 for basepath, path in new_f.items():
1728 logger.info('Adding new file %s%s' % (basepath, dry_run_suffix))
1729 _move_file(os.path.join(local_files_dir, basepath),
1730 os.path.join(files_dir, basepath),
1733 srcuri.append(srcuri_entry(basepath))
1735 for basepath, path in new_p.items():
1736 logger.info('Adding new patch %s%s' % (basepath, dry_run_suffix))
1737 _move_file(os.path.join(patches_dir, basepath),
1738 os.path.join(files_dir, basepath),
1741 srcuri.append(srcuri_entry(basepath))
1852 def update_recipe(args, config, basepath, workspace): argument
1864 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
1888 def status(args, config, basepath, workspace): argument
1903 def _reset(recipes, no_clean, remove_work, config, basepath, workspace): argument
1942 … exec_build_env_command(config.init_path, basepath, 'bitbake -c clean %s' % ' '.join(targets))
1996 def reset(args, config, basepath, workspace): argument
2017 _reset(recipes, args.no_clean, args.remove_work, config, basepath, workspace)
2047 def finish(args, config, basepath, workspace): argument
2070 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
2221 …pename], no_clean=no_clean, remove_work=remove_work, config=config, basepath=basepath, workspace=w…