| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/volatile-binds/files/ |
| H A D | mount-copybind | 18 mountpoint=$2 30 if [ -d "$mountpoint" ]; then 54 mountcontext=",rootcontext=$(matchpathcon -n "$mountpoint")" 57 …nt -t overlay overlay -olowerdir="$mountpoint",upperdir="$spec",workdir="$overlay_workdir""$mountc… 60 cp -aPR "$mountpoint"/. "$spec/" 63 mount -o "bind$options" "$spec" "$mountpoint" 67 restorecon -R "$mountpoint" 71 elif [ -f "$mountpoint" ]; then 73 cp -aP "$mountpoint" "$spec" 76 mount -o "bind$options" "$spec" "$mountpoint" [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | automount-support.rst | 11 performed and mountpoint degradation to be requested. The latter can 30 And then if you look in the mountpoint catalogue, you'll see something like:: 43 mountpoint to be expired in the automounting procedure outlined separately. 50 (2) When a new mountpoint is created in the ->d_automount method, add 68 mountpoint was accessed. 70 If a mountpoint is moved, it gets removed from the expiration list. If a bind 83 mountpoint (though some will be rejected - the current process's idea of the 87 If the mountpoint in question is in referenced by something other than 88 umount() or its parent mountpoint, an EBUSY error will be returned and the 89 mountpoint will not be marked for expiration or unmounted. [all …]
|
| /OK3568_Linux_fs/buildroot/package/usbmount/ |
| H A D | 0006-usbmount-Use-realpath-for-mountpoint-matching.patch | 4 Subject: [PATCH 6/6] usbmount: Use realpath for mountpoint matching 17 # Search an available mountpoint. 21 mountpoint="$v" 22 log debug "mountpoint $mountpoint is available for $DEVNAME"
|
| H A D | 0004-usbmount-Allow-unmounting-other-mountpoints.patch | 19 while read device mountpoint fstype remainder; do 21 - # If the mountpoint and filesystem type are maintained by 24 - if in_list "$mountpoint" "$MOUNTPOINTS" && 27 log info "executing command: umount -l $mountpoint" 28 umount -l "$mountpoint"
|
| /OK3568_Linux_fs/kernel/tools/lib/api/fs/ |
| H A D | cgroup.c | 14 char mountpoint[PATH_MAX + 1], tokens[PATH_MAX + 1], type[PATH_MAX + 1]; in cgroupfs_find_mountpoint() local 32 mountpoint, type, tokens) == 3) { in cgroupfs_find_mountpoint() 40 strcpy(path_v1, mountpoint); in cgroupfs_find_mountpoint() 48 strcpy(path_v2, mountpoint); in cgroupfs_find_mountpoint()
|
| H A D | tracing_path.c | 20 static void __tracing_path_set(const char *tracing, const char *mountpoint) in __tracing_path_set() argument 22 snprintf(tracing_mnt, sizeof(tracing_mnt), "%s", mountpoint); in __tracing_path_set() 24 mountpoint, tracing); in __tracing_path_set() 26 mountpoint, tracing, "events"); in __tracing_path_set()
|
| H A D | fs.c | 284 const char *mountpoint; in fs__mount() local 289 mountpoint = mount_overload(fs); in fs__mount() 291 if (mount(NULL, mountpoint, fs->name, 0, NULL) < 0) in fs__mount()
|
| H A D | tracing_path.h | 10 void tracing_path_set(const char *mountpoint);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/sysvinit/sysvinit/ |
| H A D | 0001-include-sys-sysmacros.h-for-major-minor-defines-in-g.patch | 11 src/mountpoint.c | 1 + 27 diff --git a/src/mountpoint.c b/src/mountpoint.c 29 --- a/src/mountpoint.c 30 +++ b/src/mountpoint.c
|
| H A D | realpath.patch | 16 src/mountpoint.c | 1 + 36 diff --git a/src/mountpoint.c b/src/mountpoint.c 38 --- a/src/mountpoint.c 39 +++ b/src/mountpoint.c
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
| H A D | 0007-invoking-mount-with-infinite-timeout.patch | 20 @@ -258,7 +258,7 @@ def mount(device, mountpoint, fstype, options=None): 21 makedirs(mountpoint) 23 argv = ["mount", "-t", fstype, "-o", options, device, mountpoint] 28 def umount(mountpoint):
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/sysvinit/ |
| H A D | sysvinit_3.01.bb | 36 ALTERNATIVE:${PN} = "init mountpoint halt reboot runlevel shutdown poweroff last lastb mesg utmpdum… 43 ALTERNATIVE_LINK_NAME[mountpoint] = "${base_bindir}/mountpoint" 44 ALTERNATIVE_PRIORITY[mountpoint] = "20" 58 ALTERNATIVE:${PN}-doc = "mountpoint.1 last.1 lastb.1 mesg.1 wall.1 sulogin.8 utmpdump.1" 63 ALTERNATIVE_LINK_NAME[mountpoint.1] = "${mandir}/man1/mountpoint.1"
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/ |
| H A D | partition.py | 40 self.mountpoint = args.mountpoint 73 self.mountpoint, self.size) 111 extra_blocks, self.mountpoint, rootfs_size) 140 "partition." % self.mountpoint) 149 "partition '%s'" % (self.fstype, self.mountpoint)) 169 (self.source, self.mountpoint)) 197 (self.mountpoint, self.source)) 202 (self.mountpoint, self.size, self.fixed_size)) 500 if part.mountpoint: 501 args = [part.fstype, "mounted at %s" % part.mountpoint]
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/plugins/imager/ |
| H A D | direct.py | 74 if not self.ks.bootloader.source and part.mountpoint == "/boot": 119 if not part.realnum or not part.mountpoint \ 120 … or part.mountpoint == "/" or not (part.mountpoint.startswith('/') or part.mountpoint == "swap"): 141 line = "\t".join([device_name, part.mountpoint, part.fstype, 240 if part.mountpoint == '/': 243 suffix = '["%s"]:' % (part.mountpoint or part.label) 262 if part.mountpoint == "/": 482 "sectors (%d bytes).", part.mountpoint, part.disk, 560 if part.mountpoint == "/boot" and part.fstype in ["vfat", "msdos"] \ 564 part.mountpoint)
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | pnode.h | 40 int propagate_mnt(struct mount *, struct mountpoint *, struct mount *, 48 void mnt_set_mountpoint(struct mount *, struct mountpoint *, 50 void mnt_change_mountpoint(struct mount *parent, struct mountpoint *mp,
|
| H A D | namespace.c | 702 static struct mountpoint *lookup_mountpoint(struct dentry *dentry) in lookup_mountpoint() 705 struct mountpoint *mp; in lookup_mountpoint() 716 static struct mountpoint *get_mountpoint(struct dentry *dentry) in get_mountpoint() 718 struct mountpoint *mp, *new = NULL; in get_mountpoint() 725 mountpoint: in get_mountpoint() 734 new = kmalloc(sizeof(struct mountpoint), GFP_KERNEL); in get_mountpoint() 744 goto mountpoint; in get_mountpoint() 770 static void __put_mountpoint(struct mountpoint *mp, struct list_head *list) in __put_mountpoint() 785 static void put_mountpoint(struct mountpoint *mp) in put_mountpoint() 820 static struct mountpoint *unhash_mnt(struct mount *mnt) in unhash_mnt() [all …]
|
| H A D | mount.h | 33 struct mountpoint { struct 66 struct mountpoint *mnt_mp; /* where is it mounted */
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/initrdscripts/initramfs-framework/ |
| H A D | rootfs | 16 while ! mountpoint -q $ROOTFS_DIR; do 53 if mountpoint -q $ROOTFS_DIR; then
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/resctrl/ |
| H A D | resctrlfs.c | 64 char mountpoint[256]; in remount_resctrlfs() local 67 ret = find_resctrl_mount(mountpoint); in remount_resctrlfs() 69 strcpy(mountpoint, RESCTRL_PATH); in remount_resctrlfs() 71 if (!ret && mum_resctrlfs && umount(mountpoint)) { in remount_resctrlfs() 72 printf("not ok unmounting \"%s\"\n", mountpoint); in remount_resctrlfs()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/volatile-binds/ |
| H A D | volatile-binds.bb | 44 while read spec mountpoint; do 51 sed -e "s#@what@#$spec#g; s#@where@#$mountpoint#g" \ 52 -e "s#@whatparent@#${spec%/*}#g; s#@whereparent@#${mountpoint%/*}#g" \
|
| /OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/mtdutils/ |
| H A D | rk29.c | 66 int rk_make_ext4fs(const char *filename,long long len, const char *mountpoint) in rk_make_ext4fs() argument 85 if(mountpoint != NULL) { in rk_make_ext4fs() 86 int result2 = mount(filename, mountpoint, "ext4", in rk_make_ext4fs() 89 printf("mount '%s' to %s fail!\n", filename, mountpoint); in rk_make_ext4fs()
|
| /OK3568_Linux_fs/device/rockchip/common/configs/ |
| H A D | Config.in.extra-part | 54 string "mountpoint" 132 string "mountpoint" 209 string "mountpoint" 282 string "mountpoint" 355 string "mountpoint"
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/util-linux/ |
| H A D | util-linux_2.37.4.bb | 162 binprogs_a="dmesg getopt kill more umount mount login su mountpoint" 247 ALTERNATIVE_LINK_NAME[mountpoint] = "${base_bindir}/mountpoint" 273 mountpoint.1 nologin.8 rfkill.8 sulogin.8 utmpdump.1 uuid.3 wall.1\ 287 ALTERNATIVE_LINK_NAME[mountpoint.1] = "${mandir}/man1/mountpoint.1"
|
| /OK3568_Linux_fs/buildroot/package/rockchip/rkscript/ |
| H A D | Config.in | 153 string "ums mountpoint" 156 UMS's mountpoint.
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-filesystems/recipes-support/fuse/files/ |
| H A D | gold-unversioned-symbol.patch | 76 @@ -436,10 +436,10 @@ int fuse_mount_compat1(const char *mountpoint, const char *args[]) 77 return fuse_mount_compat22(mountpoint, NULL);
|