From b6ee25e3ad4cffa2b0f5bb734df4b503e1e367ba Mon Sep 17 00:00:00 2001 From: Lars Svensson Date: Thu, 14 Jul 2011 13:39:09 +0200 Subject: [PATCH] init: Add noexec mount option Change-Id: Ic13d66797a86d38432e79af0c3387ce986d0a19f --- init/builtins.c | 1 + 1 file changed, 1 insertion(+) diff --git a/init/builtins.c b/init/builtins.c index 9aa2345e3..ad52b198b 100644 --- a/init/builtins.c +++ b/init/builtins.c @@ -273,6 +273,7 @@ static struct { unsigned flag; } mount_flags[] = { { "noatime", MS_NOATIME }, + { "noexec", MS_NOEXEC }, { "nosuid", MS_NOSUID }, { "nodev", MS_NODEV }, { "nodiratime", MS_NODIRATIME },