Home
last modified time | relevance | path

Searched refs:rootdir (Results 1 – 25 of 53) sorted by relevance

123

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libtar/files/
H A D0007-fix-memleaks-in-libtar-sample-program.patch19 @@ -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/openbmc/poky/meta/classes/
H A Duseradd_base.bbclass20 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 Dchrpath.bbclass10 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)
/openbmc/sdbusplus/tools/
H A Dsdbus++-gen-meson49 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/bitbake/lib/bb/fetch2/
H A Dcrate.py26 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 Dgomod.py130 def unpack(self, ud, rootdir, d): argument
134 super().unpack(ud, rootdir, d)
139 unpackdir = os.path.join(rootdir, ud.parm['subdir'])
216 def unpack(self, ud, rootdir, d): argument
220 super().unpack(ud, rootdir, d)
226 repodir = os.path.join(rootdir, ud.parm['subdir'])
231 unpackdir = os.path.join(rootdir, moddir, 'cache/download',
H A Dnpmsw.py247 def unpack(self, ud, rootdir, d): argument
249 destdir = rootdir
252 destdir = os.path.join(rootdir, destsuffix)
/openbmc/linux/drivers/net/wireless/ti/wlcore/
H A Ddebugfs.c1266 struct dentry *rootdir) in wl1271_debugfs_add_files() argument
1270 DEBUGFS_ADD(tx_queue_len, rootdir); in wl1271_debugfs_add_files()
1271 DEBUGFS_ADD(retry_count, rootdir); in wl1271_debugfs_add_files()
1272 DEBUGFS_ADD(excessive_retries, rootdir); in wl1271_debugfs_add_files()
1274 DEBUGFS_ADD(gpio_power, rootdir); in wl1271_debugfs_add_files()
1275 DEBUGFS_ADD(start_recovery, rootdir); in wl1271_debugfs_add_files()
1276 DEBUGFS_ADD(driver_state, rootdir); in wl1271_debugfs_add_files()
1277 DEBUGFS_ADD(vifs_state, rootdir); in wl1271_debugfs_add_files()
1278 DEBUGFS_ADD(dtim_interval, rootdir); in wl1271_debugfs_add_files()
1279 DEBUGFS_ADD(suspend_dtim_interval, rootdir); in wl1271_debugfs_add_files()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/makedevs/makedevs/
H A Dmakedevs.c38 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/linux/drivers/net/wireless/ath/wcn36xx/
H A Ddebug.c180 mode, dfs->rootdir, \
194 dfs->rootdir = debugfs_create_dir(KBUILD_MODNAME, in wcn36xx_debugfs_init()
196 if (IS_ERR(dfs->rootdir)) { in wcn36xx_debugfs_init()
198 dfs->rootdir = NULL; in wcn36xx_debugfs_init()
210 debugfs_remove_recursive(dfs->rootdir); in wcn36xx_debugfs_exit()
/openbmc/linux/drivers/opp/
H A Ddebugfs.c20 static struct dentry *rootdir; variable
180 d = debugfs_create_dir(opp_table->dentry_name, rootdir); in opp_list_debug_create_dir()
194 opp_dev->dentry = debugfs_create_symlink(name, rootdir, in opp_list_debug_create_link()
237 dentry = debugfs_rename(rootdir, opp_dev->dentry, rootdir, in opp_migrate_dentry()
277 rootdir = debugfs_create_dir("opp", NULL); in opp_debug_init()
/openbmc/linux/drivers/mtd/spi-nor/
H A Ddebugfs.c232 static struct dentry *rootdir; variable
239 if (!rootdir) in spi_nor_debugfs_register()
240 rootdir = debugfs_create_dir(SPI_NOR_DEBUGFS_ROOT, NULL); in spi_nor_debugfs_register()
246 d = debugfs_create_dir(dev_name(nor->dev), rootdir); in spi_nor_debugfs_register()
256 debugfs_remove(rootdir); in spi_nor_debugfs_shutdown()
/openbmc/linux/fs/qnx4/
H A Dinode.c154 struct qnx4_inode_entry *rootdir; in qnx4_checkroot() local
167 rootdir = (struct qnx4_inode_entry *) bh->b_data; in qnx4_checkroot()
168 for (i = 0; i < QNX4_INODES_PER_BLOCK; i++, rootdir++) { in qnx4_checkroot()
169 QNX4DEBUG((KERN_INFO "rootdir entry found : [%s]\n", rootdir->di_fname)); in qnx4_checkroot()
170 if (strcmp(rootdir->di_fname, QNX4_BMNAME) != 0) in qnx4_checkroot()
172 qnx4_sb(sb)->BitMap = kmemdup(rootdir, in qnx4_checkroot()
/openbmc/linux/drivers/net/wireless/ti/wl1251/
H A Ddebugfs.c431 DEBUGFS_ADD(tx_queue_len, wl->debugfs.rootdir); in wl1251_debugfs_add_files()
432 DEBUGFS_ADD(tx_queue_status, wl->debugfs.rootdir); in wl1251_debugfs_add_files()
433 DEBUGFS_ADD(retry_count, wl->debugfs.rootdir); in wl1251_debugfs_add_files()
434 DEBUGFS_ADD(excessive_retries, wl->debugfs.rootdir); in wl1251_debugfs_add_files()
451 wl->debugfs.rootdir = debugfs_create_dir(KBUILD_MODNAME, NULL); in wl1251_debugfs_init()
454 wl->debugfs.rootdir); in wl1251_debugfs_init()
473 debugfs_remove(wl->debugfs.rootdir); in wl1251_debugfs_exit()
474 wl->debugfs.rootdir = NULL; in wl1251_debugfs_exit()
/openbmc/sdbusplus/tools/sdbusplus/
H A Derror.py17 def load(name, rootdir, schemadir): argument
19 rootdir, name.replace(".", "/") + ".errors.yaml"
H A Dinterface.py17 def load(name, rootdir, schemadir): argument
19 rootdir, name.replace(".", "/") + ".interface.yaml"
/openbmc/u-boot/disk/
H A Dpart_iso.h46 unsigned char rootdir[34]; /* directory record for root dir */ member
84 unsigned char rootdir[34]; /* directory record for root dir */ member
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/tests/
H A Dprocess_tree_test.py18 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)
/openbmc/linux/kernel/power/
H A Denergy_model.c32 static struct dentry *rootdir; variable
73 d = debugfs_create_dir(dev_name(dev), rootdir); in em_debug_create_pd()
90 debugfs_lookup_and_remove(dev_name(dev), rootdir); in em_debug_remove_pd()
96 rootdir = debugfs_create_dir("energy_model", NULL); in em_debug_init()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/ufw/ufw/
H A D0001-optimize-boot.patch36 if [ -s "${rootdir}#STATE_PREFIX#/ufw-init-functions" ]; then
37 . "${rootdir}#STATE_PREFIX#/ufw-init-functions"
/openbmc/linux/net/l2tp/
H A Dl2tp_debugfs.c32 static struct dentry *rootdir; variable
328 rootdir = debugfs_create_dir("l2tp", NULL); in l2tp_debugfs_init()
330 debugfs_create_file("tunnels", 0600, rootdir, NULL, &l2tp_dfs_fops); in l2tp_debugfs_init()
339 debugfs_remove_recursive(rootdir); in l2tp_debugfs_exit()
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/libao/
H A Dlibao_1.2.0.bb24 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/linux/drivers/net/wireless/broadcom/b43legacy/
H A Ddebugfs.c29 static struct dentry *rootdir; variable
385 e->subdir = debugfs_create_dir(devdir, rootdir); in b43legacy_debugfs_add_device()
445 rootdir = debugfs_create_dir(KBUILD_MODNAME, NULL); in b43legacy_debugfs_init()
450 debugfs_remove(rootdir); in b43legacy_debugfs_exit()
/openbmc/linux/drivers/net/wireless/ti/wl12xx/
H A Ddebugfs.h12 struct dentry *rootdir);
/openbmc/linux/drivers/net/wireless/ti/wl18xx/
H A Ddebugfs.h12 struct dentry *rootdir);

123