From f117962eb25bde75e981c3bff91ba708a55df65e Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Thu, 25 Aug 2016 15:32:21 -0500 Subject: Make it backwards compatible with 4.4 Change-Id: I668604cddc8e8afbf78709f3f872bea4e9f4aa06 --- toolbox/start.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 toolbox/start.c (limited to 'toolbox/start.c') diff --git a/toolbox/start.c b/toolbox/start.c new file mode 100644 index 000000000..6c8a3f2b0 --- /dev/null +++ b/toolbox/start.c @@ -0,0 +1,21 @@ + +#include +#include +#include + +#include + +int start_main(int argc, char *argv[]) +{ + if(argc > 1) { + property_set("ctl.start", argv[1]); + } else { + /* defaults to starting the common services stopped by stop.c */ + property_set("ctl.start", "netd"); + property_set("ctl.start", "surfaceflinger"); + property_set("ctl.start", "zygote"); + property_set("ctl.start", "zygote_secondary"); + } + + return 0; +} -- cgit v1.2.3