diff options
author | Colin Cross <ccross@android.com> | 2010-04-19 17:10:24 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2010-04-21 19:43:35 -0700 |
commit | cd0f173e2790ee068fd2a20bcfc6c20468e97e51 (patch) | |
tree | c3f86859ecbb9018a74acde83125c891675f1fcd /init/parser.c | |
parent | ed8a7d84428ec945c48b6b53dc5a3a18fabaf683 (diff) | |
download | core-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.c | 1 |
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; |