| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 |  | 
|  | 2 | #include <string.h> | 
|  | 3 | #include <stdio.h> | 
|  | 4 | #include <stdlib.h> | 
|  | 5 |  | 
|  | 6 | #include <cutils/properties.h> | 
|  | 7 |  | 
|  | 8 | int start_main(int argc, char *argv[]) | 
|  | 9 | { | 
|  | 10 | char buf[1024]; | 
| Brad Fitzpatrick | d8ed091 | 2011-03-04 15:38:40 -0800 | [diff] [blame] | 11 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 12 | if(argc > 1) { | 
|  | 13 | property_set("ctl.start", argv[1]); | 
|  | 14 | } else { | 
| Brad Fitzpatrick | d8ed091 | 2011-03-04 15:38:40 -0800 | [diff] [blame] | 15 | /* defaults to starting the common services stopped by stop.c */ | 
|  | 16 | property_set("ctl.start", "surfaceflinger"); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 17 | property_set("ctl.start", "zygote"); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 18 | } | 
| Brad Fitzpatrick | d8ed091 | 2011-03-04 15:38:40 -0800 | [diff] [blame] | 19 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 20 | return 0; | 
|  | 21 | } |