aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-05-26 21:26:07 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-05-26 21:26:07 +0000
commit8a497c2c56b25086ec48d62b259d31ef7ef923df (patch)
treead61646e97a8cfcff063d7e57b80d601adee0ddd
parent32c1d0ae6411c09cb262ac80ea3381a5df649083 (diff)
downloadbusybox-w32-8a497c2c56b25086ec48d62b259d31ef7ef923df.tar.gz
busybox-w32-8a497c2c56b25086ec48d62b259d31ef7ef923df.tar.bz2
busybox-w32-8a497c2c56b25086ec48d62b259d31ef7ef923df.zip
Kevin P. Fleming writes:
Yes, I know busybox is in feature freeze. If this two-liner is too much that's fine, but it's handy. This patch allows busybox mount to support "-o move" just like it supports "-o bind", which is the equivalent of util-linux "mount --move". Usage is: mount -o move /mnt/point/1 /mnt/point/2 where /mnt/point/1 is an already mounted filesystem; it will be moved to /mnt/point/2. git-svn-id: svn://busybox.net/trunk/busybox@8881 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 35fd30323..0bc46ecb5 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -75,6 +75,7 @@ enum {
75 MS_NOATIME = 1024, /* Do not update access times. */ 75 MS_NOATIME = 1024, /* Do not update access times. */
76 MS_NODIRATIME = 2048, /* Do not update directory access times */ 76 MS_NODIRATIME = 2048, /* Do not update directory access times */
77 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */ 77 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */
78 MS_MOVE = 8192, /* Use the new linux 2.4.x "mount --move" feature */
78}; 79};
79 80
80 81
@@ -117,6 +118,7 @@ static const struct mount_options mount_options[] = {
117 {"suid", ~MS_NOSUID, 0}, 118 {"suid", ~MS_NOSUID, 0},
118 {"sync", ~0, MS_SYNCHRONOUS}, 119 {"sync", ~0, MS_SYNCHRONOUS},
119 {"bind", ~0, MS_BIND}, 120 {"bind", ~0, MS_BIND},
121 {"move", ~0, MS_MOVE},
120 {0, 0, 0} 122 {0, 0, 0}
121}; 123};
122 124