start.c revision 4f6e8d7a00cbeda1e70cc15be9c4af1018bdad53
1
2#include <string.h>
3#include <stdio.h>
4#include <stdlib.h>
5
6#include <cutils/properties.h>
7
8int start_main(int argc, char *argv[])
9{
10    char buf[1024];
11    if(argc > 1) {
12        property_set("ctl.start", argv[1]);
13    } else {
14        /* default to "start zygote" "start runtime" */
15        property_set("ctl.start", "zygote");
16        property_set("ctl.start", "runtime");
17    }
18
19    return 0;
20}
21