aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2012-08-14 14:17:45 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-14 14:17:45 -0700
commit90b80de5a7b9b4557985eb2ec21d2d82b44eb83b (patch)
tree4bc4f640777d207076c82f5c0c2cb27aea1054fb /init
parent96539e8153dadeccb8b7d334cda8b2acaaa68f06 (diff)
parente50ac5f7771872331df70251d23d6bd8155da4a7 (diff)
downloadsystem_core-90b80de5a7b9b4557985eb2ec21d2d82b44eb83b.tar.gz
system_core-90b80de5a7b9b4557985eb2ec21d2d82b44eb83b.tar.bz2
system_core-90b80de5a7b9b4557985eb2ec21d2d82b44eb83b.zip
Merge "Support shared-subtree and bind mount flags." into jb-mr1-dev
Diffstat (limited to 'init')
-rw-r--r--init/builtins.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/init/builtins.c b/init/builtins.c
index 5bda7a07..da41b897 100644
--- a/init/builtins.c
+++ b/init/builtins.c
@@ -339,6 +339,12 @@ static struct {
{ "ro", MS_RDONLY },
{ "rw", 0 },
{ "remount", MS_REMOUNT },
+ { "bind", MS_BIND },
+ { "rec", MS_REC },
+ { "unbindable", MS_UNBINDABLE },
+ { "private", MS_PRIVATE },
+ { "slave", MS_SLAVE },
+ { "shared", MS_SHARED },
{ "defaults", 0 },
{ 0, 0 },
};