blob: 0941e64f4c1b946de54e504af99483aac6499adc [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001
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{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080010 if(argc > 1) {
11 property_set("ctl.start", argv[1]);
12 } else {
Brad Fitzpatrickd8ed0912011-03-04 15:38:40 -080013 /* defaults to starting the common services stopped by stop.c */
14 property_set("ctl.start", "surfaceflinger");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080015 property_set("ctl.start", "zygote");
Narayan Kamath22e22ac2014-05-09 17:56:33 +010016 property_set("ctl.start", "zygote_secondary");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080017 }
Brad Fitzpatrickd8ed0912011-03-04 15:38:40 -080018
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080019 return 0;
20}