Loading toolbox/start.c +4 −3 Original line number Diff line number Diff line Loading @@ -8,12 +8,13 @@ int start_main(int argc, char *argv[]) { char buf[1024]; if(argc > 1) { property_set("ctl.start", argv[1]); } else { /* default to "start zygote" "start runtime" */ /* defaults to starting the common services stopped by stop.c */ property_set("ctl.start", "surfaceflinger"); property_set("ctl.start", "zygote"); property_set("ctl.start", "runtime"); } return 0; Loading toolbox/stop.c +2 −3 Original line number Diff line number Diff line Loading @@ -10,11 +10,10 @@ int stop_main(int argc, char *argv[]) if(argc > 1) { property_set("ctl.stop", argv[1]); } else{ /* default to "stop runtime" "stop zygote" */ property_set("ctl.stop", "runtime"); /* defaults to stopping the common services */ property_set("ctl.stop", "zygote"); property_set("ctl.stop", "surfaceflinger"); } return 0; } Loading
toolbox/start.c +4 −3 Original line number Diff line number Diff line Loading @@ -8,12 +8,13 @@ int start_main(int argc, char *argv[]) { char buf[1024]; if(argc > 1) { property_set("ctl.start", argv[1]); } else { /* default to "start zygote" "start runtime" */ /* defaults to starting the common services stopped by stop.c */ property_set("ctl.start", "surfaceflinger"); property_set("ctl.start", "zygote"); property_set("ctl.start", "runtime"); } return 0; Loading
toolbox/stop.c +2 −3 Original line number Diff line number Diff line Loading @@ -10,11 +10,10 @@ int stop_main(int argc, char *argv[]) if(argc > 1) { property_set("ctl.stop", argv[1]); } else{ /* default to "stop runtime" "stop zygote" */ property_set("ctl.stop", "runtime"); /* defaults to stopping the common services */ property_set("ctl.stop", "zygote"); property_set("ctl.stop", "surfaceflinger"); } return 0; }