Home
last modified time | relevance | path

Searched refs:destdir (Results 1 – 25 of 75) sorted by relevance

123

/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-publish-sdk51 host, destdir = destination.split(':')
52 dest_sdk = os.path.join(destdir, sdk_basename)
56 destdir = destination
63 cmd = "ssh %s 'mkdir -p %s'" % (host, destdir)
66 logger.error("Making directory %s on %s failed" % (destdir, host))
100 cmd = "ssh %s 'sh %s -p -y -d %s%s'" % (host, dest_sdk, destdir, rm_or_not)
103 logger.info('Successfully unpacked %s to %s' % (dest_sdk, destdir))
105 logger.error('Failed to unpack %s to %s' % (dest_sdk, destdir))
112 …&& git config user.name 'OE' && git commit -q -m \"init repo\" || true'" % (host, destdir, destdir)
H A Dgen-lockedsig-cache102 destdir = os.path.dirname(dst) variable
103 mkdir(destdir)
108 if (os.stat(src).st_dev == os.stat(destdir).st_dev):
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dgitannex.py65 def unpack(self, ud, destdir, d): argument
66 Git.unpack(self, ud, destdir, d)
69 runfetchcmd("%s annex init" % (ud.basecmd), d, workdir=ud.destdir)
73 annex = self.uses_annex(ud, d, ud.destdir)
75 runfetchcmd("%s annex get" % (ud.basecmd), d, workdir=ud.destdir)
76 … runfetchcmd("chmod u+w -R %s/.git/annex" % (ud.destdir), d, quiet=True, workdir=ud.destdir)
H A Dgit.py536 def unpack(self, ud, destdir, d): argument
551 if not os.path.realpath(subdir).startswith(os.path.realpath(destdir)):
552 …e bb.fetch2.UnpackError("subdir argument isn't a subdirectory of unpack root %s" % destdir, ud.url)
553 destdir = subdir
555 destdir = os.path.join(destdir, subdir)
559 destdir = ud.destdir = os.path.join(destdir, destsuffix)
560 if os.path.exists(destdir):
561 bb.utils.prunedir(destdir)
574 … runfetchcmd("%s clone %s %s/ %s" % (ud.basecmd, ud.cloneflags, ud.clonedir, destdir), d)
582 bb.utils.mkdirhier(destdir)
[all …]
H A Dgitsm.py201 def unpack(self, ud, destdir, d): argument
207 repo_conf = ud.destdir
209 repo_conf = os.path.join(ud.destdir, '.git')
221 …rl %(url)s" % {'basecmd': ud.basecmd, 'module': module, 'url' : local_path}, d, workdir=ud.destdir)
224 …module.%(module)s.shallow true" % {'basecmd': ud.basecmd, 'module': module}, d, workdir=ud.destdir)
233 Git.unpack(self, ud, destdir, d)
235 ret = self.process_submodules(ud, ud.destdir, unpack_submodules, d)
241 …cmd("%s submodule update --recursive --no-fetch" % (ud.basecmd), d, quiet=True, workdir=ud.destdir)
H A Dnpmsw.py241 destdir = d.getVar("S")
244 destdir = os.path.join(rootdir, destsuffix)
246 bb.utils.mkdirhier(destdir)
248 os.path.join(destdir, "npm-shrinkwrap.json"))
254 ud.proxy.unpack(destdir, auto)
257 depdestdir = os.path.join(destdir, dep["destsuffix"])
261 depsrcdir= os.path.join(destdir, dep["localpath"])
H A Dnpm.py71 def npm_unpack(tarball, destdir, d): argument
73 bb.utils.mkdirhier(destdir)
78 runfetchcmd(cmd, d, workdir=destdir)
79 runfetchcmd("chmod -R +X '%s'" % (destdir), d, quiet=True, workdir=destdir)
295 destdir = os.path.join(rootdir, destsuffix)
296 npm_unpack(ud.localpath, destdir, d)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/apache2/apache2/
H A D0009-support-apxs.in-force-destdir-to-be-empty-string.patch4 Subject: [PATCH] support/apxs.in: force destdir to be empty string
6 If destdir is assigned to anything other than the empty string, the
33 my $destdir = "";
36 - $destdir = substr($0, 0, $ddi);
38 +# Comment out assignment of destdir so that it doesn't affect bitbake
42 +# $destdir = substr($0, 0, $ddi);
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Drecipetool.py707 …iles(self, testrecipe, newfiles, expectedlines=None, expectedfiles=None, destdir=None, options=''): argument
709 if destdir:
710 options += ' -D %s' % destdir
735 …def _test_appendsrcfile(self, testrecipe, filename=None, destdir=None, has_src_uri=True, srcdir=No… argument
740 if destdir:
741 expected_subdir = os.path.join(srcdir, destdir)
746 expected_subdir = destdir
749 if destdir:
750 destpath = os.path.join(destdir, filename)
755 if destdir:
[all …]
/OK3568_Linux_fs/kernel/fs/overlayfs/
H A Dcopy_up.c442 struct dentry *destdir; member
582 struct inode *udir = d_inode(c->destdir), *wdir = d_inode(c->workdir); in ovl_copy_up_workdir()
595 if (lock_rename(c->workdir, c->destdir) != NULL) in ovl_copy_up_workdir()
619 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len); in ovl_copy_up_workdir()
636 unlock_rename(c->workdir, c->destdir); in ovl_copy_up_workdir()
649 struct inode *udir = d_inode(c->destdir); in ovl_copy_up_tmpfile()
670 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len); in ovl_copy_up_tmpfile()
725 c->destdir = ovl_indexdir(c->dentry->d_sb); in ovl_do_copy_up()
737 err = ovl_set_impure(c->parent, c->destdir); in ovl_do_copy_up()
757 struct inode *udir = d_inode(c->destdir); in ovl_do_copy_up()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A Ddeploy.py147 host, destdir = args.target.split(':')
149 destdir = '/'
152 if not destdir.endswith('/'):
153 destdir += '/'
195 fpath = os.path.join(destdir, os.path.relpath(root, recipe_outdir), fn)
253 …shexec, ssh_port, extraoptions, args.target, tmpscript, args.recipename, destdir, tmpfilelist), cw…
264 files_list.append(os.path.join(destdir, filename))
/OK3568_Linux_fs/kernel/scripts/package/
H A Dbuilddeb81 destdir=$pdir/usr/src/linux-headers-$version
82 mkdir -p $destdir
83 tar -c -f - -C $srctree -T debian/hdrsrcfiles | tar -xf - -C $destdir
84 tar -c -f - -T debian/hdrobjfiles | tar -xf - -C $destdir
88 cp $KCONFIG_CONFIG $destdir/.config
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dcopy_buildsystem.py38 def copy_bitbake_and_layers(self, destdir, workspace_name=None): argument
43 bb.utils.mkdirhier(destdir)
97 layerdestpath = destdir
110 destdir)
262 destdir = os.path.join(output_sstate_cache, fixedlsbstring)
266 dest = os.path.join(destdir, os.path.relpath(src, nativedir))
H A Drecipeutils.py544 def get_bbfile_path(d, destdir, extrapathhint=None): argument
555 destdir = os.path.abspath(destdir)
556 destlayerdir = find_layerdir(destdir)
584 if destdir == destlayerdir:
598 pathoptions = [destdir]
600 pathoptions.append(os.path.join(destdir, extrapathhint))
601 if destdir == destlayerdir:
602 pathoptions.append(os.path.join(destdir, 'recipes-%s' % bpn, bpn))
603 pathoptions.append(os.path.join(destdir, 'recipes', bpn))
604 pathoptions.append(os.path.join(destdir, bpn))
[all …]
H A Dsdk.py60 def movefile(self, sourcefile, destdir): argument
65 if (bb.utils.movefile(sourcefile, destdir) == None):
67 %(sourcefile, destdir))
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_npm.py127 def _licfiles_append_fallback_readme_files(destdir): argument
132 basedir = os.path.join(srctree, destdir)
148 destdir = os.path.join(*destdirs)
149 packages["${PN}-" + suffix] = destdir
150 _licfiles_append_fallback_readme_files(destdir)
/OK3568_Linux_fs/yocto/poky/meta/recipes-gnome/gtk-doc/files/
H A Dno-clobber.patch33 destdir=`dirname $(abs_builddir)/$$file`; \
34 test -d "$$destdir" || mkdir -p "$$destdir"; \
/OK3568_Linux_fs/kernel/tools/memory-model/scripts/
H A Dchecklitmushist.sh45 destdir="$LKMM_DESTDIR"
48 LKMM_DESTDIR="$destdir"; export LKMM_DESTDIR
/OK3568_Linux_fs/buildroot/package/
H A Dpkg-waf.mk95 install --destdir=$$(STAGING_DIR) \
109 install --destdir=$$(TARGET_DIR) \
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dlicense.bbclass7 LICSSTATEDIR = "${WORKDIR}/license-destdir/"
26 destdir = os.path.join(d.getVar('LICSSTATEDIR'), d.getVar('PN'))
27 copy_license_files(lic_files_paths, destdir)
29 with open(os.path.join(destdir, "recipeinfo"), "w") as f:
43 destdir = d.getVar('D') + os.path.join(d.getVar('LICENSE_FILES_DIRECTORY'), d.getVar('PN'))
44 copy_license_files(lic_files_paths, destdir)
68 def copy_license_files(lic_files_paths, destdir):
72 bb.utils.mkdirhier(destdir)
76 dst = os.path.join(destdir, basename)
81 …canlink = os.access(src, os.W_OK) and (os.stat(src).st_dev == os.stat(destdir).st_dev) and beginli…
H A Dcpan_build.bbclass21 perl Build.PL --installdirs vendor --destdir ${D} \
38 perl Build install --destdir ${D}
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0001-Revert-ld.hugetlbfs-fix-Ttext-segment-argument-on-AA.patch10 …ion=.comment', '--remove-section=.note', 'libhugetlbfs/1_2.23-r0/sysroot-destdir/usr/lib/libhugetl…
12 …libhugetlbfs/1_2.23-r0/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj32/stmuFa58: error: PHDR segm…
13 …arm-oe-linux-gnueabi-strip: libhugetlbfs/1_2.23-r0/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj3…
59 ./1_2.22-r0-old/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj32/linkhuge_rw
95 ./1_2.23-r0-new/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj32/linkhuge_rw
133 1_2.22-r0-old/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj32/linkhuge_rw.readelf
134 1_2.23-r0-new/sysroot-destdir/usr/lib/libhugetlbfs/tests/obj32/linkhuge_rw.readelf
/OK3568_Linux_fs/yocto/poky/scripts/lib/resulttool/
H A Dresultutils.py157 def save_resultsdata(results, destdir, fn="testresults.json", ptestjson=False, ptestlogs=False): argument
160 dst = destdir + "/" + res + "/" + fn
162 dst = destdir + "/" + fn
/OK3568_Linux_fs/buildroot/package/polkit/
H A D0002-Improve-meson_post_install-script.patch47 +destdir = os.environ.get('DESTDIR')
56 + if destdir is None:
59 + return os.path.join(destdir, os.path.relpath(p, '/'))
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/
H A D0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch28 + func_stripname '' '/' "$destdir"
32 - inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`

123