aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-21 15:59:34 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-21 15:59:34 +0000
commitf560dbd0639d9146b593f1bd0a1834d039e670cc (patch)
treeb5eeecf2b4d3f523412168b046ada344f333289f /util-linux
parentb34b5bfdd7974b4387768907e0f446854b84f527 (diff)
downloadbusybox-w32-f560dbd0639d9146b593f1bd0a1834d039e670cc.tar.gz
busybox-w32-f560dbd0639d9146b593f1bd0a1834d039e670cc.tar.bz2
busybox-w32-f560dbd0639d9146b593f1bd0a1834d039e670cc.zip
Patch from Gernot Poerner <gp@it-netservice.de>. Adds in
mount bind support. git-svn-id: svn://busybox.net/trunk/busybox@2680 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 4e0e3e428..e40d75f79 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -70,6 +70,7 @@ enum {
70 S_IMMUTABLE = 512, /* Immutable file */ 70 S_IMMUTABLE = 512, /* Immutable file */
71 MS_NOATIME = 1024, /* Do not update access times. */ 71 MS_NOATIME = 1024, /* Do not update access times. */
72 MS_NODIRATIME = 2048, /* Do not update directory access times */ 72 MS_NODIRATIME = 2048, /* Do not update directory access times */
73 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */
73}; 74};
74 75
75 76
@@ -112,6 +113,7 @@ static const struct mount_options mount_options[] = {
112 {"rw", ~MS_RDONLY, 0}, 113 {"rw", ~MS_RDONLY, 0},
113 {"suid", ~MS_NOSUID, 0}, 114 {"suid", ~MS_NOSUID, 0},
114 {"sync", ~0, MS_SYNCHRONOUS}, 115 {"sync", ~0, MS_SYNCHRONOUS},
116 {"bind", ~0, MS_BIND},
115 {0, 0, 0} 117 {0, 0, 0}
116}; 118};
117 119