Home
last modified time | relevance | path

Searched refs:outdir (Results 1 – 25 of 35) sorted by relevance

12

/openbmc/u-boot/tools/patman/
H A Dtools.py15 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 Doe-build-perf-report-email.py93 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 Ddisassemle-aml.sh3 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 Dfuzz-coverage.py22 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 Dfuzz-coverage.py22 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 Dretain.bbclass67 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 Dpackage_ipk.bbclass28 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 Dmeta-world-pkgdata.bb24 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 Dmeta-extsdk-toolchain.bb25 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 Dkfigure.py217 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 Dkfigure.py260 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 Dgen_kheaders.sh8 outdir="$(pwd)"
10 cpio_dir=$outdir/${tarfile%/*}/.tmp_cpio_dir
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings/
H A D0001-Fix-error.patch20 - 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 Dyocto-vars.py41 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 Ddirect.py58 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 Dimage_types_wic.bbclass194 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 Dpython_flit_core.bbclass13 nativepython3 -m flit_core.wheel --outdir ${PEP517_WHEEL_PATH} .
H A Dpython_pep517.bbclass40 …nativepython3 -m build --no-isolation --wheel --outdir ${PEP517_WHEEL_PATH} ${PEP517_SOURCE_PATH} …
/openbmc/openbmc/poky/scripts/
H A Doe-build-perf-report379 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 Ddepfile.py51 print((env.config.depfile_stamp or app.outdir) + ": \\", file=f)
/openbmc/openbmc/poky/meta/classes/
H A Darchiver.bbclass547 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 DCVE-2023-43361.patch10 such as `./` or `outdir/`. This adds a check to make sure the
/openbmc/u-boot/tools/binman/
H A Dcontrol.py112 tools.PrepareOutputDir(options.outdir, options.preserve)
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dengine.py179 if not os.path.exists(options.outdir):
180 os.makedirs(options.outdir)
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py651 outdir = args.outfile
654 outdir = None
812 if outdir:
813 outfile = os.path.join(outdir, outfile)

12