997 B
997 B
| 1 | # /system/configuration/init.csv — the services init (PID 1) starts at boot, in order. |
|---|---|
| 2 | # |
| 3 | # init reads this at startup and spawns each service supervised (restarting it on |
| 4 | # a crash, up to a cap). Startup order is top->bottom; shutdown is the reverse, so |
| 5 | # the logger (last) goes down first and its final drain still has the fat server |
| 6 | # and the whole storage chain alive underneath it. It is AUTHORITATIVE — there is |
| 7 | # no hardcoded fallback list; a missing file means no services are started. |
| 8 | # |
| 9 | # '#' starts a comment (whole-line or trailing); blank lines are ignored. The |
| 10 | # first field is the service binary path; any fields after it are the service's |
| 11 | # argv. Drivers are absent on purpose — the device manager discovers hardware and |
| 12 | # spawns those (see /system/configuration/devices.csv). |
| 13 | # |
| 14 | # service args... |
| 15 | /system/services/input |
| 16 | /system/services/device-manager |
| 17 | /system/services/fat |
| 18 | /system/services/display |
| 19 | /system/services/display-demo |
| 20 | /system/services/logger |