Searched refs:destpath (Results 1 – 6 of 6) sorted by relevance
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | utils.bbclass | 65 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 D | append.py | 207 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 D | standard.py | 1269 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 D | utils.py | 842 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 D | recipetool.py | 1055 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 D | recipeutils.py | 816 (destpath, perms) = institem 817 instdestpath = replace_dir_vars(destpath, rd)
|