| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libtar/files/ |
| H A D | 0007-fix-memleaks-in-libtar-sample-program.patch | 19 @@ -253,6 +253,7 @@ extract(char *tarfile, char *rootdir) 20 if (tar_extract_all(t, rootdir) != 0) 27 @@ -270,12 +271,13 @@ extract(char *tarfile, char *rootdir) 32 +usage(void *rootdir) 34 printf("Usage: %s [-C rootdir] [-g] [-z] -x|-t filename.tar\n", 36 printf(" %s [-C rootdir] [-g] [-z] -c filename.tar ...\n", 38 + free(rootdir); 55 + usage(rootdir); 61 + usage(rootdir); 67 + usage(rootdir); [all …]
|
| /openbmc/sdbusplus/tools/ |
| H A D | sdbus++-gen-meson | 49 rootdir="." 70 rootdir="$1" 215 yamldir="$(realpath --relative-to="${mesondir}" "${rootdir}")" 297 yamldir="$(realpath --relative-to="${mesondir}" "${rootdir}")" 332 yamldir="$(realpath --relative-to="${mesondir}" "${rootdir}")" 388 …yamls="$(find "${rootdir}" -name '*.interface.yaml' -o -name '*.errors.yaml' -o -name '*.events.ya… 393 rel="$(realpath "--relative-to=${rootdir}" "${y}")" 433 if [[ ! -e "${rootdir}/$1.interface.yaml" ]] && 434 [[ ! -e "${rootdir}/$1.errors.yaml" ]] && 435 [[ ! -e "${rootdir}/$1.events.yaml" ]]; then [all …]
|
| /openbmc/openbmc/poky/meta/classes/ |
| H A D | useradd_base.bbclass | 20 local rootdir="$1" 24 local group_exists="`grep "^$groupname:" $rootdir/etc/group || true`" 26 eval flock -x $rootdir${sysconfdir} -c \"$PSEUDO groupadd \$opts\" || true 27 group_exists="`grep "^$groupname:" $rootdir/etc/group || true`" 37 local rootdir="$1" 41 local user_exists="`grep "^$username:" $rootdir/etc/passwd || true`" 43 eval flock -x $rootdir${sysconfdir} -c \"$PSEUDO useradd \$opts\" || true 44 user_exists="`grep "^$username:" $rootdir/etc/passwd || true`" 54 local rootdir="$1" 60 …local mem_exists="`grep "^$groupname:[^:]*:[^:]*:\([^,]*,\)*$username\(,[^,]*\)*$" $rootdir/etc/gr… [all …]
|
| H A D | chrpath.bbclass | 10 def process_file_linux(cmd, fpath, rootdir, baseprefix, tmpdir, d, break_hardlinks = False): 46 …new_rpaths.append("$ORIGIN/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/"))… 62 def process_file_darwin(cmd, fpath, rootdir, baseprefix, tmpdir, d, break_hardlinks = False): 80 … newpath = "@loader_path/" + os.path.relpath(rpath, os.path.dirname(fpath.replace(rootdir, "/"))) 84 def process_dir(rootdir, directory, d, break_hardlinks = False): 91 rootdir = os.path.normpath(rootdir) 114 process_dir(rootdir, fpath, d, break_hardlinks = break_hardlinks) 128 … process_file(cmd, fpath, rootdir, baseprefix, tmpdir, d, break_hardlinks = break_hardlinks)
|
| H A D | go-vendor.bbclass | 118 rootdir = module['repo_path'] 122 src = rootdir 125 src = os.path.join(rootdir, subdir) 151 rootdirLicese = os.path.join(rootdir, "LICENSE")
|
| H A D | buildhistory.bbclass | 898 rootdir = e.data.getVar("BUILDHISTORY_DIR") 899 bb.utils.mkdirhier(rootdir) 900 entries = [ x for x in os.listdir(rootdir) if not x.startswith('.') ] 903 bb.utils.rename(os.path.join(rootdir, entry),
|
| /openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
| H A D | crate.py | 26 def _cargo_bitbake_path(self, rootdir): argument 27 return os.path.join(rootdir, "cargo_home", "bitbake") 80 def unpack(self, ud, rootdir, d): argument 85 return self._crate_unpack(ud, rootdir, d) 87 super(Crate, self).unpack(ud, rootdir, d) 89 def _crate_unpack(self, ud, rootdir, d): argument 100 os.chdir(rootdir) 105 ud.unpack_tracer.unpack("crate-extract", rootdir) 107 cargo_bitbake = self._cargo_bitbake_path(rootdir) 138 bbpath = self._cargo_bitbake_path(rootdir)
|
| H A D | gomod.py | 130 def unpack(self, ud, rootdir, d): argument 134 unpackpath = os.path.join(rootdir, ud.parm['unpackpath']) 224 def unpack(self, ud, rootdir, d): argument 228 super().unpack(ud, rootdir, d) 234 repodir = os.path.join(rootdir, ud.parm['subdir']) 239 unpackdir = os.path.join(rootdir, moddir, 'cache/download',
|
| H A D | npmsw.py | 247 def unpack(self, ud, rootdir, d): argument 249 destdir = rootdir 252 destdir = os.path.join(rootdir, destsuffix)
|
| H A D | npm.py | 312 def unpack(self, ud, rootdir, d): argument 315 destdir = os.path.join(rootdir, destsuffix)
|
| H A D | __init__.py | 1506 def unpack(self, urldata, rootdir, data): argument 1518 efile = os.path.join(rootdir, os.path.basename(base)) 1589 if not os.path.realpath(subdir).startswith(os.path.realpath(rootdir)): 1590 … raise UnpackError("subdir argument isn't a subdirectory of unpack root %s" % rootdir, urldata.url) 1593 unpackdir = os.path.join(rootdir, subdir) 1596 unpackdir = rootdir 1631 iterate_urldata.localpath = "%s/%s" % (rootdir, iterate_file) 1632 self.unpack(urldata, rootdir, data)
|
| /openbmc/openbmc/poky/meta/recipes-devtools/makedevs/makedevs/ |
| H A D | makedevs.c | 38 static char *rootdir = default_rootdir; variable 473 if (lstat(rootdir, &sb)) { in parse_devtable() 474 perror_msg_and_die("%s", rootdir); in parse_devtable() 476 if (chdir(rootdir)) in parse_devtable() 477 perror_msg_and_die("%s", rootdir); in parse_devtable() 540 if (rootdir != default_rootdir) { in main() 548 rootdir = xstrdup(optarg); in main() 549 if (0 == strcmp(rootdir, "/")) in main() 552 rootdir_prepend = xstrdup(rootdir); in main() 574 sprintf(passwd_path, "%s/etc/passwd", rootdir); in main() [all …]
|
| /openbmc/sdbusplus/tools/sdbusplus/ |
| H A D | error.py | 17 def load(name, rootdir, schemadir): argument 19 rootdir, name.replace(".", "/") + ".errors.yaml"
|
| H A D | interface.py | 17 def load(name, rootdir, schemadir): argument 19 rootdir, name.replace(".", "/") + ".interface.yaml"
|
| H A D | main.py | 81 args.item, args.rootdir, args.schemadir
|
| H A D | event.py | 159 def load(name, rootdir, schemadir): argument 171 rootdir, name.replace(".", "/") + ".events.yaml"
|
| /openbmc/u-boot/disk/ |
| H A D | part_iso.h | 46 unsigned char rootdir[34]; /* directory record for root dir */ member 84 unsigned char rootdir[34]; /* directory record for root dir */ member
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/ufw/ufw/ |
| H A D | 0001-optimize-boot.patch | 36 if [ -s "${rootdir}#STATE_PREFIX#/ufw-init-functions" ]; then 37 . "${rootdir}#STATE_PREFIX#/ufw-init-functions"
|
| /openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/libao/ |
| H A D | libao_1.2.0.bb | 24 rootdir = bb.data.expand('${libdir}/ao/plugins-4', d) 26 …do_split_packages(d, rootdir, r'^(.*)\.so$', output_pattern='${BPN}-plugin-%s', description='AO %s…
|
| /openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/tests/ |
| H A D | process_tree_test.py | 18 self.rootdir = os.path.join(os.path.dirname(sys.argv[0]), '../../examples/1/') 21 options, args = parser.parse_args(['--q', self.rootdir]) 31 return os.path.join(self.rootdir, f)
|
| H A D | parser_test.py | 24 self.rootdir = bootchart_dir 27 return os.path.join(self.rootdir, f)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/dietsplash/ |
| H A D | dietsplash_git.bb | 20 --disable-staticimages --with-rootdir=${root_prefix}"
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/python3-cryptography/ |
| H A D | 0001-pyproject.toml-remove-benchmark-disable-option.patch | 16 rootdir: /usr/lib/python3-cryptography/ptest
|
| /openbmc/openbmc/poky/scripts/lib/wic/plugins/imager/ |
| H A D | direct.py | 245 rootdir = part.rootfs_dir 246 msg += ' ROOTFS_DIR%s%s\n' % (suffix.ljust(20), rootdir)
|
| /openbmc/qemu/pc-bios/s390-ccw/ |
| H A D | bootmap.h | 436 IsoDirHdr rootdir; member
|