blob: 8a9c68bfd63a15cdbdc4a259a973694b1dc028e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
on post-fs-data
# make param block device link for SysScope
symlink /dev/block/mmcblk0p4 /dev/block/param
# Restorecon
restorecon /efs/nv_data.bin
restorecon /efs/nv_data.bin.md5
restorecon /efs/.nv_core.bak
restorecon /efs/.nv_core.bak.md5
restorecon /efs/.nv_data.bak
restorecon /efs/.nv_data.bak.md5
restorecon /efs/.nv_state
restorecon /efs/bluetooth/bt_addr
restorecon /efs/FactoryApp/factorymode
restorecon /efs/FactoryApp/hw_ver
restorecon /efs/FactoryApp/keystr
restorecon /efs/FactoryApp/serial_no
restorecon /efs/imei/mps_code.dat
restorecon /efs/gyro_cal_data
restorecon /efs/wifi/.mac.info
on boot
# icd
service icd /system/bin/icd
class main
user system
group system log
onrestart exec icd_check
# cbd
service cpboot-daemon /sbin/cbd -d
class main
user root
group radio cache inet misc audio sdcard_rw log
# GPS
service gpsd /system/bin/gpsd -c /system/etc/gps.xml
class main
socket gps seqpacket 0660 gps system
user gps
group system inet sdcard_rw
service dmb /system/bin/dmbserver
class main
user system
group radio inet misc audio camera graphics net_bt net_bt_admin sdcard_rw
# TVout
service TvoutService_C /system/bin/bintvoutservice
class main
user system
group graphics
on property:ro.tvout.enable=false
stop TvoutService_C
|