Home
last modified time | relevance | path

Searched refs:srcpath (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dappend.py111 srcpath = get_source_path(elements)
112 logger.debug('source path: %s' % srcpath)
113 if not srcpath.startswith('/'):
115srcpath = os.path.abspath(os.path.join(rd.getVarFlag('do_install', 'dirs').split()[-1], srcpath))
116 if srcpath.startswith(workdir):
118 workdirfile = os.path.relpath(srcpath, workdir)
134 if fileitem[0] == srcpath:
212 srcpath = get_source_path(elements)
213 if fnmatch.fnmatchcase(os.path.basename(instpath), os.path.basename(srcpath)):
/openbmc/qemu/
H A Dqemu-nbd.c261 char *srcpath; member
345 opts->device, opts->srcpath); in nbd_client_thread()
613 .srcpath = NULL, in main()
1094 opts.srcpath = argv[optind]; in main()
1101 o = qemu_opts_parse_noisily(&file_opts, opts.srcpath, true); in main()
1114 blk = blk_new_open(opts.srcpath, NULL, options, flags, &local_err); in main()
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dstandard.py1522 srcpath = os.path.join(rd.getVar('WORKDIR'), frag_name)
1523 if os.path.exists(srcpath):
1527 shutil.copy2(srcpath, destdir)
1530 shutil.copy2(srcpath, local_files_dir)
2256 srcpath = os.path.join(root, fn)
2257 relpth = os.path.relpath(os.path.dirname(srcpath), recipedir)
2260 _move_file(srcpath, destfp, dry_run_outdir=dry_run_outdir, base_outdir=destpath)
H A Dupgrade.py495 def _extract_licenses(srcpath, recipe_licenses): argument
508 with open(os.path.join(srcpath, path), 'rb') as f:
/openbmc/openbmc/poky/meta/classes-global/
H A Dsstate.bbclass251 srcpath = os.path.join(walkroot, file)
252 dstpath = srcpath.replace(state[1], state[2])
253 #bb.debug(2, "Staging %s to %s" % (srcpath, dstpath))
673 srcpath = os.path.join(walkroot, file)
674 if not os.path.islink(srcpath):
676 link = os.readlink(srcpath)
681 …olute path symlink %s pointing at %s. Please replace this with a relative link." % (srcpath, link))