You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
889 B
37 lines
889 B
3 years ago
|
# Copyright (C) 2012 The Android Open Source Project
|
||
|
#
|
||
|
# IMPORTANT: Do not create world writable files or directories.
|
||
|
# This is a common source of Android security bugs.
|
||
|
#
|
||
|
|
||
|
# service can not be overwritten except SPRINT
|
||
|
# Thus, rilcarrier is imported before common rc, like init.rilchip.rc
|
||
|
|
||
|
on post-fs-data
|
||
|
mkdir /data/vendor/secradio 0770 radio radio
|
||
|
restorecon -R /data/vendor/secradio
|
||
|
|
||
|
on property:ro.vendor.multisim.simslotcount=1
|
||
|
stop ril-daemon1
|
||
|
|
||
|
on property:vts.native_server.on=*
|
||
|
setprop vendor.vts.native_server.on ${vts.native_server.on}
|
||
|
|
||
|
service network_config /vendor/bin/secril_config_svc NetworkConfig
|
||
|
user radio
|
||
|
group radio
|
||
|
oneshot
|
||
|
disabled
|
||
|
|
||
|
service sim_config /vendor/bin/secril_config_svc SimConfig
|
||
|
user radio
|
||
|
group radio
|
||
|
oneshot
|
||
|
disabled
|
||
|
|
||
|
on fs
|
||
|
exec_start sim_config
|
||
|
|
||
|
on post-fs-data
|
||
|
exec_start network_config
|