Searched refs:destpath (Results 1 – 7 of 7) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | utils.bbclass | 60 destpath="$1" 61 if [ -z "$destpath" ]; then 109 __runcmd install -d $destpath/ 112 rm -f $destpath/$dota 113 __runcmd install -m 0644 $dota $destpath/ 116 rm -f $destpath/$libname.la 117 __runcmd install -m 0644 $dotlai $destpath/$libname.la 128 __runcmd cp -P "$f" $destpath/ 131 rm -f $destpath/$libfile 132 __runcmd install -m 0755 $libfile $destpath/ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dpkg/dpkg/ |
| H A D | 0001-Dpkg-Source-Archive-Prevent-directory-traversal-for-.patch | 129 + my $destpath = File::Spec->catfile($dest, $relpath); 138 + if (not lstat $destpath) { 142 + syserr(g_('cannot get target pathname %s metadata'), $destpath); 150 + chmod $mode, $destpath 152 + utime $atime, $mtime, $destpath 158 + rmdir $destpath 159 + or syserr(g_('cannot remove destination directory %s'), $destpath); 161 + $check_symlink->($destpath); 162 + unlink $destpath 163 + or syserr(g_('cannot remove destination file %s'), $destpath); [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | append.py | 206 destpath = os.path.abspath(elements[-1]) 207 if destpath == instpath: 209 elif destpath.rstrip('/') == os.path.dirname(instpath): 402 def destination_path(destpath): argument 403 if os.path.isabs(destpath): 404 … raise argparse.ArgumentTypeError('{0!r} must be a relative path, not absolute'.format(destpath)) 405 return destpath
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/ |
| H A D | standard.py | 1264 def _remove_source_files(append, files, destpath, no_report_remove=False, dry_run=False): argument 1271 if not destpath: 1273 path = os.path.join(destpath, os.path.basename(path)) 1539 destpath = None 1576 appendfile, destpath = oe.recipeutils.bbappend_recipe( 1610 …_remove_source_files(appendlayerdir, remove_files, destpath, no_report_remove, dry_run=dry_run_out… 1674 destpath = None 1690 appendfile, destpath = oe.recipeutils.bbappend_recipe( 1759 …_remove_source_files(appendlayerdir, remove_files, destpath, no_report_remove, dry_run=dry_run_out… 2108 destpath = oe.recipeutils.get_bbfile_path(rd, destlayerdir, origrelpath) [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | utils.py | 798 destpath = os.path.join(dest, srcfname) if os.path.isdir(dest) \ 803 bb.utils.rename(src, destpath) 816 shutil.copyfile(src, destpath + "#new") 817 bb.utils.rename(destpath + "#new", destpath) 830 os.lchown(destpath, sstat[stat.ST_UID], sstat[stat.ST_GID]) 831 os.chmod(destpath, stat.S_IMODE(sstat[stat.ST_MODE])) # Sticky is reset on chown 838 os.utime(destpath, (newmtime, newmtime)) 840 os.utime(destpath, (sstat[stat.ST_ATIME], sstat[stat.ST_MTIME]))
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | recipetool.py | 750 destpath = os.path.join(destdir, filename) 752 destpath = filename 756 destpath = destdir + os.sep 758 destpath = '.' + os.sep 769 …return self._try_recipetool_appendsrcfile(testrecipe, newfile, destpath, options, expectedlines, […
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | recipeutils.py | 787 (destpath, perms) = institem 788 instdestpath = replace_dir_vars(destpath, rd)
|