From ceb36d08f4afc06e8f71cc84975350fe9ef591e0 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 15 Jul 2019 15:12:56 -0700 Subject: [PATCH] Reserve 'init'. This makes `pathmod init` and `gomod init` work, and it also reserves the 'init' for potential future usage. Change-Id: I6990bf421211b93d58d978d84d46474ff243e808 Bugs: me Test: pathmod init; gomod init --- init/Android.bp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/init/Android.bp b/init/Android.bp index ee339dd85..d1647a90b 100644 --- a/init/Android.bp +++ b/init/Android.bp @@ -159,6 +159,13 @@ cc_library_static { }, } +phony { + name: "init", + required: [ + "init_second_stage", + ], +} + cc_binary { name: "init_second_stage", recovery_available: true,