| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | tools.py | 13 outdir = None variable 34 global outdir, preserve_outdir 38 outdir = dirname 39 if not os.path.isdir(outdir): 41 os.makedirs(outdir) 44 (outdir, err.strerror)) 45 tout.Debug("Using output directory '%s'" % outdir) 47 outdir = tempfile.mkdtemp(prefix='binman.') 48 tout.Debug("Using temporary directory '%s'" % outdir) 51 global outdir [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | oe-build-perf-report-email.py | 93 if args.outdir: 94 outdir = args.outdir 95 if not os.path.exists(outdir): 96 os.mkdir(outdir) 98 outdir = tempfile.mkdtemp(dir='.') 101 log.debug("Storing email parts in %s", outdir) 113 if not args.outdir: 114 log.debug("Wiping %s", outdir) 115 shutil.rmtree(outdir)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/meta/ |
| H A D | meta-world-pkgdata.bb | 24 outdir = os.path.join(d.getVar('WORLD_PKGDATADIR')) 25 bb.utils.mkdirhier(outdir) 26 sigfile = os.path.join(outdir, 'locked-sigs-pkgdata.inc')
|
| H A D | meta-extsdk-toolchain.bb | 25 outdir = os.path.join(d.getVar('LOCKED_SIGS_INDIR')) 26 bb.utils.mkdirhier(outdir) 27 sigfile = os.path.join(outdir, 'locked-sigs-extsdk-toolchain.inc')
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | package_tar.bbclass | 15 outdir = d.getVar('DEPLOY_DIR_TAR') 16 if not outdir: 32 bb.utils.mkdirhier(outdir)
|
| H A D | image_types_wic.bbclass | 168 outdir = os.path.join(stdir, d.getVar('MACHINE'), 'imgdata') 169 bb.utils.mkdirhier(outdir) 171 with open(os.path.join(outdir, basename) + '.env', 'w') as envf: 179 …bb.utils.copyfile(os.path.join(outdir, basename) + '.env', os.path.join(depdir, basename) + '.env')
|
| H A D | package_ipk.bbclass | 22 outdir = d.getVar('PKGWRITEDIRIPK') 25 if not workdir or not outdir or not tmpdir: 57 outdir = d.getVar('PKGWRITEDIRIPK') 99 pkgoutdir = "%s/%s/%s/%s" % (outdir, arch, pkg_prefix, pkg_subdir) 101 pkgoutdir = "%s/%s" % (outdir, arch)
|
| H A D | archiver.bbclass | 534 outdir = os.path.join(d.getVar('WORKDIR'), \ 536 bb.utils.mkdirhier(outdir) 537 shutil.copy(bbfile, outdir) 547 shutil.copy(file, outdir) 563 shutil.copy(incfile, outdir) 565 create_tarball(d, outdir, 'recipe', d.getVar('ARCHIVER_OUTDIR')) 566 bb.utils.remove(outdir, recurse=True)
|
| H A D | package_deb.bbclass | 67 outdir = d.getVar('PKGWRITEDIRDEB') 93 pkgoutdir = os.path.join(outdir, localdata.getVar('PACKAGE_ARCH'))
|
| /OK3568_Linux_fs/kernel/Documentation/sphinx/ |
| H A D | kfigure.py | 219 src_fname = path.join(translator.builder.outdir, img_node['uri']) 235 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 242 translator.builder.outdir, 262 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 269 _name = dst_fname[len(translator.builder.outdir) + 1:] 442 self.builder.outdir, self.builder.imagedir, fname + tmp_ext)
|
| /OK3568_Linux_fs/external/xserver/xkb/ |
| H A D | ddxLoad.c | 63 OutputDirectory(char *outdir, size_t size) in OutputDirectory() argument 69 (void) strcpy(outdir, XKM_OUTPUT_DIR); in OutputDirectory() 74 (void) strcpy(outdir, Win32TempDir()); in OutputDirectory() 75 (void) strcat(outdir, "\\"); in OutputDirectory() 80 (void) strcpy(outdir, "/tmp/"); in OutputDirectory()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings/ |
| H A D | 0001-Fix-error.patch | 19 - COMMAND ${SWIG_EXECUTABLE} -python -Wall -threads -features autodoc -o ${SWIG_OUTPUT} -outdir $… 20 + COMMAND ${SWIG_EXECUTABLE} -python -Wall -threads -features autodoc -o ${SWIG_OUTPUT} -outdir $…
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | gen_kheaders.sh | 8 outdir="$(pwd)" 10 cpio_dir=$outdir/$tarfile.tmp
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/plugins/imager/ |
| H A D | direct.py | 58 self.outdir = options.outdir 91 return tempfile.mkdtemp(dir=self.outdir, prefix='tmp.wic.') 233 full_path = self._full_path(self.outdir, self.parts[0].disk, extension) 276 if not os.path.exists(self.outdir): 277 os.makedirs(self.outdir) 282 shutil.move(path, os.path.join(self.outdir, fname))
|
| /OK3568_Linux_fs/yocto/poky/documentation/sphinx/ |
| H A D | yocto-vars.py | 41 poky_cache = Path(app.outdir) / ".poky.yaml.cache" 57 poky_cache = Path(app.outdir) / ".poky.yaml.cache"
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | oe-build-perf-report | 375 def get_buildstats(repo, notes_ref, notes_ref2, revs, outdir=None): argument 408 if outdir: 411 bs_dir = os.path.join(outdir, measurement, tag_base) 596 outdir = 'oe-build-perf-buildstats' if args.dump_buildstats else None 602 buildstats = get_buildstats(repo, notes_ref, notes_ref2, [rev_l, rev_r], outdir)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dpkg/dpkg/ |
| H A D | 0001-Dpkg-Source-Archive-Prevent-directory-traversal-for-.patch | 241 + my $outdir = "$tmpdir/$name-out"; 252 + symlink File::Spec->abs2rel($outdir, $treedir), "$treedir/symlink-escape"; 253 + symlink File::Spec->abs2rel("$outdir/nonexistent", $treedir), "$treedir/symlink-nonexistent"; 300 + make_path($outdir); 317 + ok(! -e "$outdir/escaped-file",
|
| /OK3568_Linux_fs/u-boot/tools/binman/ |
| H A D | control.py | 94 tools.PrepareOutputDir(options.outdir, options.preserve)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/ |
| H A D | engine.py | 179 if not os.path.exists(options.outdir): 180 os.makedirs(options.outdir)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create.py | 620 outdir = args.outfile 623 outdir = None 796 if outdir: 797 outfile = os.path.join(outdir, outfile)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | recipeutils.py | 903 outdir = redirect_output 905 outdir = appenddir 907 filedest = os.path.join(outdir, destsubdir, os.path.basename(srcfile))
|
| H A D | patch.py | 462 def extractPatches(tree, startcommit, outdir, paths=None): argument 494 with open(os.path.join(outdir, outfile), 'w') as of:
|
| /OK3568_Linux_fs/buildroot/docs/manual/ |
| H A D | adding-packages-asciidoc.txt | 101 11: /path/to/generate-script --outdir=$(@D)
|
| /OK3568_Linux_fs/kernel/tools/power/pm-graph/ |
| H A D | sleepgraph.py | 113 outdir = '' variable in SystemValues 6359 sysvals.outdir = sysvals.setOutputFolder(value) 6712 sysvals.outdir = sysvals.setOutputFolder(val) 6755 sysvals.outdir = val 6814 runSummary(sysvals.outdir, True, genhtml) 6833 stamp = rerunTest(sysvals.outdir) 6866 if not sysvals.outdir: 6871 sysvals.outdir = datetime.now().strftime('suspend-%y%m%d-%H%M%S'+s) 6872 if not os.path.isdir(sysvals.outdir): 6873 os.makedirs(sysvals.outdir) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta-poky/conf/ |
| H A D | local.conf.sample.extended | 349 # <outdir>/<arch>/<pkg_prefix>/<pkg_subdir>, where pkg_prefix is the first 358 # feed layout is used where package files are placed in <outdir>/<arch>/.
|