diff options
Diffstat (limited to 'toolbox/start.c')
-rw-r--r-- | toolbox/start.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/toolbox/start.c b/toolbox/start.c deleted file mode 100644 index 3bd9fbb..0000000 --- a/toolbox/start.c +++ /dev/null @@ -1,20 +0,0 @@ - -#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 { - /* default to "start zygote" "start runtime" */ - property_set("ctl.start", "zygote"); - property_set("ctl.start", "runtime"); - } - - return 0; -} |