2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <cutils/properties.h>
|
|
|
|
|
|
|
|
int start_main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if(argc > 1) {
|
|
|
|
property_set("ctl.start", argv[1]);
|
|
|
|
} else {
|
2011-03-05 00:38:40 +01:00
|
|
|
/* defaults to starting the common services stopped by stop.c */
|
2014-07-19 09:47:59 +02:00
|
|
|
property_set("ctl.start", "netd");
|
2011-03-05 00:38:40 +01:00
|
|
|
property_set("ctl.start", "surfaceflinger");
|
2009-03-04 04:32:55 +01:00
|
|
|
property_set("ctl.start", "zygote");
|
2014-05-09 18:56:33 +02:00
|
|
|
property_set("ctl.start", "zygote_secondary");
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2011-03-05 00:38:40 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|