summaryrefslogtreecommitdiffstats
path: root/init/parser.c
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2010-04-19 17:10:24 -0700
committerColin Cross <ccross@android.com>2010-04-21 19:43:35 -0700
commitcd0f173e2790ee068fd2a20bcfc6c20468e97e51 (patch)
treec3f86859ecbb9018a74acde83125c891675f1fcd /init/parser.c
parented8a7d84428ec945c48b6b53dc5a3a18fabaf683 (diff)
downloadcore-cd0f173e2790ee068fd2a20bcfc6c20468e97e51.tar.gz
core-cd0f173e2790ee068fd2a20bcfc6c20468e97e51.tar.bz2
core-cd0f173e2790ee068fd2a20bcfc6c20468e97e51.zip
init: Add wait command and mount wait flag
Change-Id: I6b4c10f8f246095a7fb7342388ec4f6ff97d5733
Diffstat (limited to 'init/parser.c')
-rw-r--r--init/parser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/parser.c b/init/parser.c
index b085da87c..d5c044d92 100644
--- a/init/parser.c
+++ b/init/parser.c
@@ -204,6 +204,7 @@ int lookup_keyword(const char *s)
break;
case 'w':
if (!strcmp(s, "rite")) return K_write;
+ if (!strcmp(s, "ait")) return K_wait;
break;
}
return K_UNKNOWN;