Lines Matching refs:basepath

84 def check_manifest(fn, basepath):  argument
93 curr_chksum = bb.utils.sha256_file(os.path.join(basepath, fpath))
95 …logger.debug('File %s changed: old csum = %s, new = %s' % (os.path.join(basepath, fpath), curr_chk…
99 def sdk_update(args, config, basepath, workspace): argument
107 logger.debug("basepath = %s" % basepath)
108 old_locked_sig_file_path = os.path.join(basepath, 'conf/locked-sigs.inc')
113 logger.debug("Found conf/locked-sigs.inc in %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')):
183 oldsums = read_uninative_checksums(os.path.join(basepath, 'conf/local.conf'))
198 destfile = os.path.join(basepath, changedfile)
204 shutil.rmtree(os.path.join(basepath, 'downloads', 'uninative'))
205 …shutil.move(os.path.join(tmpsdk_dir, 'downloads', 'uninative'), os.path.join(basepath, 'downloads'…
227 …exec_build_env_command(config.init_path, basepath, 'bitbake --setscene-only %s' % ' '.join(sdk_upd…
228 …output, _ = exec_build_env_command(config.init_path, basepath, 'bitbake -n %s' % ' '.join(sdk_upda…
241 def sdk_install(args, config, basepath, workspace): argument
263 tinfoil = setup_tinfoil(config_only=False, basepath=basepath)
289 …exec_build_env_command(config.init_path, basepath, 'bitbake %s %s' % (options, ' '.join(install_ta…
303 exec_build_env_command(config.init_path, basepath, 'bitbake build-sysroots', watch=True)