/openbmc/u-boot/tools/patman/ |
H A D | tools.py | 15 outdir = None variable 51 global outdir, preserve_outdir 55 outdir = dirname 56 if not os.path.isdir(outdir): 58 os.makedirs(outdir) 61 (outdir, err.strerror)) 62 tout.Debug("Using output directory '%s'" % outdir) 64 outdir = tempfile.mkdtemp(prefix='binman.') 65 tout.Debug("Using temporary directory '%s'" % outdir) 68 global outdir [all …]
|
/openbmc/openbmc/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)
|
/openbmc/qemu/tests/data/acpi/ |
H A D | disassemle-aml.sh | 3 outdir= 7 outdir=$OPTARG 24 if [[ "${outdir}" ]]; 26 mkdir -p "${outdir}"/${machine} || exit $? 45 if [[ "${outdir}" ]]; 51 prefix="-p ${outdir}/${aml}.dsl"
|
/openbmc/libpldm/tests/fuzz/ |
H A D | fuzz-coverage.py | 22 outdir = Path(args.outdir) 34 outdir.mkdir(parents=True, exist_ok=True) 36 lcov_file = outdir / "lcov.info" 59 outdir, 70 html = outdir / "index.html"
|
/openbmc/libmctp/tests/fuzz/ |
H A D | fuzz-coverage.py | 22 outdir = Path(args.outdir) 34 outdir.mkdir(parents=True, exist_ok=True) 36 lcov_file = outdir / "lcov.info" 59 outdir, 72 html = outdir / "index.html"
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | retain.bbclass | 67 outdir = d.getVar('RETAIN_OUTDIR') 68 bb.utils.mkdirhier(outdir) 71 tarfp = os.path.join(outdir, '%s' % tarname) 108 outdir = d.getVar('RETAIN_OUTDIR') 109 bb.utils.mkdirhier(outdir) 110 dirlist_file = os.path.join(outdir, 'retain_dirs.list') 119 outdir = d.getVar('RETAIN_OUTDIR') 120 dirlist_file = os.path.join(outdir, 'retain_dirs.list') 181 bb.plain('NOTE: retain: saved %d %s to %s' % (count, item, outdir))
|
H A D | package_ipk.bbclass | 28 outdir = d.getVar('PKGWRITEDIRIPK') 31 if not workdir or not outdir or not tmpdir: 67 outdir = d.getVar('PKGWRITEDIRIPK') 109 pkgoutdir = "%s/%s/%s/%s" % (outdir, arch, pkg_prefix, pkg_subdir) 111 pkgoutdir = "%s/%s" % (outdir, arch)
|
/openbmc/openbmc/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')
|
/openbmc/u-boot/Documentation/sphinx/ |
H A D | kfigure.py | 217 src_fname = path.join(translator.builder.outdir, img_node['uri']) 232 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 239 translator.builder.outdir, 258 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 265 _name = dst_fname[len(translator.builder.outdir) + 1:] 436 self.builder.outdir, self.builder.imagedir, fname + tmp_ext)
|
/openbmc/linux/Documentation/sphinx/ |
H A D | kfigure.py | 260 src_fname = path.join(translator.builder.outdir, img_node['uri']) 276 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 283 translator.builder.outdir, 305 dst_fname = path.join(translator.builder.outdir, fname + '.pdf') 312 _name = dst_fname[len(translator.builder.outdir) + 1:] 325 svg_fname = path.join(translator.builder.outdir, fname + '.svg') 540 self.builder.outdir, self.builder.imagedir, fname + tmp_ext)
|
/openbmc/linux/kernel/ |
H A D | gen_kheaders.sh | 8 outdir="$(pwd)" 10 cpio_dir=$outdir/${tarfile%/*}/.tmp_cpio_dir
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings/ |
H A D | 0001-Fix-error.patch | 20 - COMMAND ${SWIG_EXECUTABLE} -python -Wall -threads -features autodoc -o ${SWIG_OUTPUT} -outdir $… 21 + COMMAND ${SWIG_EXECUTABLE} -python -Wall -threads -features autodoc -o ${SWIG_OUTPUT} -outdir $…
|
/openbmc/openbmc/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"
|
/openbmc/openbmc/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.') 234 full_path = self._full_path(self.outdir, self.parts[0].disk, extension) 277 if not os.path.exists(self.outdir): 278 os.makedirs(self.outdir) 283 shutil.move(path, os.path.join(self.outdir, fname))
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | image_types_wic.bbclass | 194 outdir = os.path.join(stdir, d.getVar('MACHINE'), 'imgdata') 195 bb.utils.mkdirhier(outdir) 197 with open(os.path.join(outdir, basename) + '.env', 'w') as envf: 205 …bb.utils.copyfile(os.path.join(outdir, basename) + '.env', os.path.join(depdir, basename) + '.env')
|
H A D | python_flit_core.bbclass | 13 nativepython3 -m flit_core.wheel --outdir ${PEP517_WHEEL_PATH} .
|
H A D | python_pep517.bbclass | 40 …nativepython3 -m build --no-isolation --wheel --outdir ${PEP517_WHEEL_PATH} ${PEP517_SOURCE_PATH} …
|
/openbmc/openbmc/poky/scripts/ |
H A D | oe-build-perf-report | 379 def get_buildstats(repo, notes_ref, notes_ref2, revs, outdir=None): argument 412 if outdir: 415 bs_dir = os.path.join(outdir, measurement, tag_base) 600 outdir = 'oe-build-perf-buildstats' if args.dump_buildstats else None 606 buildstats = get_buildstats(repo, notes_ref, notes_ref2, [rev_l, rev_r], outdir)
|
/openbmc/qemu/docs/sphinx/ |
H A D | depfile.py | 51 print((env.config.depfile_stamp or app.outdir) + ": \\", file=f)
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | archiver.bbclass | 547 outdir = os.path.join(d.getVar('WORKDIR'), \ 549 bb.utils.mkdirhier(outdir) 550 shutil.copy(bbfile, outdir) 560 shutil.copy(file, outdir) 576 shutil.copy(incfile, outdir) 578 create_tarball(d, outdir, 'recipe', d.getVar('ARCHIVER_OUTDIR')) 579 bb.utils.remove(outdir, recurse=True)
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools/ |
H A D | CVE-2023-43361.patch | 10 such as `./` or `outdir/`. This adds a check to make sure the
|
/openbmc/u-boot/tools/binman/ |
H A D | control.py | 112 tools.PrepareOutputDir(options.outdir, options.preserve)
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | engine.py | 179 if not os.path.exists(options.outdir): 180 os.makedirs(options.outdir)
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create.py | 651 outdir = args.outfile 654 outdir = None 812 if outdir: 813 outfile = os.path.join(outdir, outfile)
|