Home
last modified time | relevance | path

Searched refs:destpath (Results 1 – 6 of 6) sorted by relevance

/openbmc/openbmc/poky/meta/classes-global/
H A Dutils.bbclass65 destpath="$1"
66 if [ -z "$destpath" ]; then
114 __runcmd install -d $destpath/
117 rm -f $destpath/$dota
118 __runcmd install -m 0644 $dota $destpath/
121 rm -f $destpath/$libname.la
122 __runcmd install -m 0644 $dotlai $destpath/$libname.la
133 __runcmd cp -P "$f" $destpath/
136 rm -f $destpath/$libfile
137 __runcmd install -m 0755 $libfile $destpath/
[all …]
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dappend.py207 destpath = os.path.abspath(elements[-1])
208 if destpath == instpath:
210 elif destpath.rstrip('/') == os.path.dirname(instpath):
428 def destination_path(destpath): argument
429 if os.path.isabs(destpath):
430 … raise argparse.ArgumentTypeError('{0!r} must be a relative path, not absolute'.format(destpath))
431 return destpath
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dstandard.py1269 def _remove_source_files(append, files, destpath, no_report_remove=False, dry_run=False): argument
1276 if not destpath:
1278 path = os.path.join(destpath, os.path.basename(path))
1539 destpath = None
1575 appendfile, destpath = oe.recipeutils.bbappend_recipe(
1611 …_remove_source_files(appendlayerdir, remove_files, destpath, no_report_remove, dry_run=dry_run_out…
1674 destpath = None
1703 appendfile, destpath = oe.recipeutils.bbappend_recipe(
1790 …_remove_source_files(appendlayerdir, remove_files, destpath, no_report_remove, dry_run=dry_run_out…
2153 destpath = oe.recipeutils.get_bbfile_path(rd, destlayerdir, origrelpath)
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dutils.py842 destpath = os.path.join(dest, srcfname) if os.path.isdir(dest) \
847 bb.utils.rename(src, destpath)
860 shutil.copyfile(src, destpath + "#new")
861 bb.utils.rename(destpath + "#new", destpath)
874 os.lchown(destpath, sstat[stat.ST_UID], sstat[stat.ST_GID])
875 os.chmod(destpath, stat.S_IMODE(sstat[stat.ST_MODE])) # Sticky is reset on chown
882 os.utime(destpath, (newmtime, newmtime))
884 os.utime(destpath, (sstat[stat.ST_ATIME], sstat[stat.ST_MTIME]))
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Drecipetool.py1055 destpath = os.path.join(destdir, filename)
1057 destpath = filename
1061 destpath = destdir + os.sep
1063 destpath = '.' + os.sep
1102 …return self._try_recipetool_appendsrcfile(testrecipe, newfile, destpath, options, expectedlines, […
/openbmc/openbmc/poky/meta/lib/oe/
H A Drecipeutils.py816 (destpath, perms) = institem
817 instdestpath = replace_dir_vars(destpath, rd)