svn commit: trunk/busybox/util-linux

vda at busybox.net vda at busybox.net
Tue Jul 8 02:56:53 UTC 2008


Author: vda
Date: 2008-07-07 19:56:53 -0700 (Mon, 07 Jul 2008)
New Revision: 22678

Log:
mount: support for "-o mand"



Modified:
   trunk/busybox/util-linux/mount.c


Changeset:
Modified: trunk/busybox/util-linux/mount.c
===================================================================
--- trunk/busybox/util-linux/mount.c	2008-07-08 02:41:21 UTC (rev 22677)
+++ trunk/busybox/util-linux/mount.c	2008-07-08 02:56:53 UTC (rev 22678)
@@ -135,6 +135,8 @@
 		/* "noatime"     */ MS_NOATIME,
 		/* "diratime"    */ ~MS_NODIRATIME,
 		/* "nodiratime"  */ MS_NODIRATIME,
+		/* "mand"        */ MS_MANDLOCK,
+		/* "nomand"      */ ~MS_MANDLOCK,
 		/* "loud"        */ ~MS_SILENT,
 
 		// action flags
@@ -185,6 +187,8 @@
 		"noatime" "\0"
 		"diratime" "\0"
 		"nodiratime" "\0"
+		"mand" "\0"
+		"nomand" "\0"
 		"loud" "\0"
 
 		// action flags




More information about the busybox-cvs mailing list