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