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/stop.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 toolbox/stop.c (limited to 'toolbox/stop.c') diff --git a/toolbox/stop.c b/toolbox/stop.c new file mode 100644 index 000000000..5e3ce3c8c --- /dev/null +++ b/toolbox/stop.c @@ -0,0 +1,19 @@ +#include +#include + +#include + +int stop_main(int argc, char *argv[]) +{ + if(argc > 1) { + property_set("ctl.stop", argv[1]); + } else{ + /* defaults to stopping the common services */ + property_set("ctl.stop", "zygote_secondary"); + property_set("ctl.stop", "zygote"); + property_set("ctl.stop", "surfaceflinger"); + property_set("ctl.stop", "netd"); + } + + return 0; +} -- cgit v1.2.3