d8ed091c6e
Change-Id: Ide045fc3baced9e1bde95cb26d0b835511c21780
21 lines
425 B
C
21 lines
425 B
C
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <cutils/properties.h>
|
|
|
|
int start_main(int argc, char *argv[])
|
|
{
|
|
char buf[1024];
|
|
|
|
if(argc > 1) {
|
|
property_set("ctl.start", argv[1]);
|
|
} else {
|
|
/* defaults to starting the common services stopped by stop.c */
|
|
property_set("ctl.start", "surfaceflinger");
|
|
property_set("ctl.start", "zygote");
|
|
}
|
|
|
|
return 0;
|
|
}
|