-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.zetaw.rc
executable file
·1203 lines (984 loc) · 36.8 KB
/
init.zetaw.rc
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2009-2012, The Linux Foundation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of The Linux Foundation nor
# the names of its contributors may be used to endorse or promote
# products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
import init.zetaw.usb.rc
import init.lge.log.rc
#LG_UPDATE_START : move to init.zetaw.bt_vendor.rc to seperate vendor's resource 20140106, [START]
import init.zetaw.bt_vendor.rc
#LG_UPDATE_END : 20140106, [END]
on early-init
mount debugfs debugfs /sys/kernel/debug
on init
# Set permissions for persist partition
mkdir /persist 0771 system system
mkdir /persist-lg 0771 system system
mkdir /sns 0775 system system
mkdir /storage 0751 system sdcard_r
mkdir /storage/external_SD 0700 root root
mkdir /mnt/media_rw 0700 media_rw media_rw
mkdir /mnt/media_rw/external_SD 0700 media_rw media_rw
# See storage config details at http://source.android.com/tech/storage/
mkdir /mnt/shell/emulated 0700 shell shell
mkdir /storage/emulated 0555 root root
# Palman ok
# mkdir /storage/emulated/legacy 0555 root root
# Palman nok so extermination!!
export EXTERNAL_STORAGE /storage/emulated/legacy
export EXTERNAL_ADD_STORAGE /storage/external_SD
export SECONDARY_STORAGE /storage/external_SD
export EMULATED_STORAGE_SOURCE /mnt/shell/emulated
export EMULATED_STORAGE_TARGET /storage/emulated
# Support legacy paths
symlink /storage/emulated/legacy /sdcard
symlink /storage/emulated/legacy /mnt/sdcard
symlink /storage/emulated/legacy /storage/sdcard0
symlink /mnt/shell/emulated/0 /storage/emulated/legacy
# LGE_UPDATE_START, 2013/5/8, [email protected]
wait /dev/block/platform/msm_sdcc.1/by-name/userdata
wait /dev/block/platform/msm_sdcc.1/by-name/cache
wait /dev/block/platform/msm_sdcc.1/by-name/drm
wait /dev/block/platform/msm_sdcc.1/by-name/sns
exec /sbin/setup_fs_static \
/dev/block/platform/msm_sdcc.1/by-name/userdata \
/dev/block/platform/msm_sdcc.1/by-name/cache \
/dev/block/platform/msm_sdcc.1/by-name/drm \
/dev/block/platform/msm_sdcc.1/by-name/sns \
no_reboot
# LGE_UPDATE_END
# SD Enc
setprop ro.ssbd.session /dev/block/platform/msm_sdcc.1/by-name/eksst
setprop ro.ssbd.offset 0
on fs
# sreadahead daemon
on post-fs
start sreadahead
# seandroid using auditd
mkdir /data/misc/audit 02750 system system
chmod 664 /sys/devices/virtual/input/lge_touch/touch_gesture
chown system system /sys/devices/virtual/input/lge_touch/touch_gesture
chmod 664 /sys/devices/virtual/input/lge_touch/knock_on_type
chown system system /sys/devices/virtual/input/lge_touch/knock_on_type
chmod 664 /sys/devices/virtual/input/lge_touch/global_access_pixel
chown system system /sys/devices/virtual/input/lge_touch/global_access_pixel
chmod 664 /sys/devices/virtual/input/lge_touch/lpwg_data
chown system system /sys/devices/virtual/input/lge_touch/lpwg_data
chmod 664 /sys/devices/virtual/input/lge_touch/lpwg_notify
chown system system /sys/devices/virtual/input/lge_touch/lpwg_notify
chmod 664 /sys/devices/virtual/input/lge_touch/incoming_call
chown system system /sys/devices/virtual/input/lge_touch/incoming_call
chmod 664 /sys/devices/virtual/input/lge_touch/lockscreen
chown system system /sys/devices/virtual/input/lge_touch/lockscreen
# LGE_CHANGE_S, [LGE_DATA][LGP_DATA_TCPIP_NSRM], [email protected], 2012-05-22
export LD_PRELOAD /vendor/lib/libNimsWrap.so
# LGE_CHANGE_E, [LGE_DATA][LGP_DATA_TCPIP_NSRM], [email protected], 2012-05-22
# LGE_CHANGE_S
# enable chargerlogo
on chargerlogo
stop bootlogo
exec /sbin/chargerlogo
#LGE_CHANGE_E
on early-boot
# set RLIMIT_MEMLOCK to 64MB
setrlimit 8 67108864 67108864
# Allow subsystem (modem etc) debugging
write /sys/module/subsystem_restart/parameters/enable_debug ${persist.sys.ssr.enable_debug}
exec /system/bin/sh /init.zetaw.early_boot.sh ${ro.board.platform}
exec /system/bin/sh /init.zetaw.syspart_fixup.sh ${ro.board.platform} ${ro.serialno}
# disable lmk_fast_run
write /sys/module/lowmemorykiller/parameters/lmk_fast_run 0
on boot
# ADD LGODL
chmod 0755 /system/bin/lg_dm_dev_router
#LG_UPDATE_START : move to init.zetaw.bt_vendor.rc to seperate vendor's resource 20140106, [START]
# chown bluetooth bluetooth /sys/module/bluetooth_power/parameters/power
# chown bluetooth bluetooth /sys/class/rfkill/rfkill0/type
# chown bluetooth bluetooth /sys/class/rfkill/rfkill0/state
# chown bluetooth bluetooth /proc/bluetooth/sleep/proto
# chown bluetooth bluetooth /sys/module/hci_uart/parameters/ath_lpm
# chown bluetooth bluetooth /sys/module/hci_uart/parameters/ath_btwrite
# chown system system /sys/module/sco/parameters/disable_esco
# chown bluetooth bluetooth /sys/module/hci_smd/parameters/hcismd_set
# chmod 0660 /sys/module/bluetooth_power/parameters/power
# chmod 0660 /sys/module/hci_smd/parameters/hcismd_set
# chmod 0660 /sys/class/rfkill/rfkill0/state
# chmod 0660 /proc/bluetooth/sleep/proto
# chown bluetooth bluetooth /dev/ttyHS0
# chmod 0660 /sys/module/hci_uart/parameters/ath_lpm
# chmod 0660 /sys/module/hci_uart/parameters/ath_btwrite
# chmod 0660 /dev/ttyHS0
# chown bluetooth bluetooth /sys/devices/platform/msm_serial_hs.0/clock
# chmod 0660 /sys/devices/platform/msm_serial_hs.0/clock
# chown system system /sys/devices/platform/kcal_ctrl.0/kcal
# chown system system /sys/devices/platform/kcal_ctrl.0/kcal_ctrl
# chmod 0660 /dev/ttyHS2
# chown bluetooth bluetooth /dev/ttyHS2
#LG_UPDATE_END : 20140106, [END]
#Create QMUX deamon socket area
mkdir /dev/socket/qmux_radio 0770 radio radio
chmod 2770 /dev/socket/qmux_radio
mkdir /dev/socket/qmux_audio 0770 media audio
chmod 2770 /dev/socket/qmux_audio
mkdir /dev/socket/qmux_bluetooth 0770 bluetooth bluetooth
chmod 2770 /dev/socket/qmux_bluetooth
mkdir /dev/socket/qmux_gps 0770 gps gps
chmod 2770 /dev/socket/qmux_gps
setprop wifi.interface wlan0
# Define TCP buffer sizes for various networks
# ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
setprop net.tcp.buffersize.wifi 524288,2097152,4194304,262144,524288,1048576
setprop ro.telephony.call_ring.multiple false
#Set SUID bit for usbhub
chmod 4755 /system/bin/usbhub
chmod 755 /system/bin/usbhub_init
#Remove SUID bit for iproute2 ip tool
chmod 0755 /system/bin/ip
chmod 0444 /sys/devices/platform/msm_hsusb/gadget/usb_state
#For bridgemgr daemon to inform the USB driver of the correct transport
chown radio radio /sys/class/android_usb/f_rmnet_smd_sdio/transport
# Define TCP buffer sizes for various networks
# ReadMin, ReadInitial, ReadMax, WriteMin, WriteInitial, WriteMax,
setprop net.tcp.buffersize.default 4096,87380,110208,4096,16384,110208
setprop net.tcp.buffersize.lte 524288,1048576,2097152,262144,524288,1048576
setprop net.tcp.buffersize.umts 4094,87380,110208,4096,16384,110208
setprop net.tcp.buffersize.hspa 4094,87380,1220608,4096,16384,1220608
setprop net.tcp.buffersize.hsupa 4094,87380,1220608,4096,16384,1220608
setprop net.tcp.buffersize.hsdpa 4094,87380,1220608,4096,16384,1220608
setprop net.tcp.buffersize.hspap 4094,87380,1220608,4096,16384,1220608
setprop net.tcp.buffersize.edge 4093,26280,35040,4096,16384,35040
setprop net.tcp.buffersize.gprs 4092,8760,11680,4096,8760,11680
setprop net.tcp.buffersize.evdo 4094,87380,262144,4096,16384,262144
# Assign TCP buffer thresholds to be ceiling value of technology maximums
# Increased technology maximums should be reflected here.
write /proc/sys/net/core/rmem_max 2097152
write /proc/sys/net/core/wmem_max 2097152
#To allow interfaces to get v6 address when tethering is enabled
write /proc/sys/net/ipv6/conf/rmnet0/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet1/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet2/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet3/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet4/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet5/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet6/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet7/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio0/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio1/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio2/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio3/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio4/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio5/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio6/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_sdio7/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_usb0/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_usb1/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_usb2/accept_ra 2
write /proc/sys/net/ipv6/conf/rmnet_usb3/accept_ra 2
# To prevent out of order acknowledgements from making
# connection tracking to treat them as not belonging to
# the connection they belong to.
# Otherwise, a weird issue happens in which some long
# connections on high-throughput links get dropped when
# an ack packet comes out of order
write /proc/sys/net/netfilter/nf_conntrack_tcp_be_liberal 1
# NFC local data and nfcee xml storage
mkdir /data/nfc 0770 nfc nfc
mkdir /data/nfc/param 0770 nfc nfc
# Set the console loglevel to < KERN_INFO
# Set the default message loglevel to KERN_INFO
write /proc/sys/kernel/printk "6 6 1 7"
# [email protected] for SW IrRC
chown media media /dev/msm_IRRC_pcm_dec
chmod 0660 /dev/msm_IRRC_pcm_dec
# msm specific files that need to be created on /data
on post-fs-data
# we will remap this as /mnt/sdcard with the sdcard fuse tool
mkdir /data/media 0770 media_rw media_rw
chown media_rw media_rw /data/media
mkdir /data/footprint 0750 root log
chown root system /data/footprint
chmod 0775 /data/footprint
start last_kmsg_backup
mkdir /sns/cal/ 0644 system system
mkdir /data/misc/bluetooth 0770 bluetooth bluetooth
# Create the directories used by the Wireless subsystem
mkdir /data/misc/wifi 0771 wifi system
mkdir /data/misc/wifi/sockets 0770 wifi wifi
mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi
mkdir /data/misc/dhcp 0770 dhcp dhcp
# chown dhcp dhcp /data/misc/dhcp
# CONFIG_LGE_WLAN_PATCH
# to observe dnsmasq.leases file for dhcp information of soft ap.
chown dhcp system /data/misc/dhcp
# Create the directories used by CnE subsystem
mkdir /data/connectivity 0771 system system
chown system system /data/connectivity
mkdir /data/connectivity/nsrm 0771 system system
chown system system /data/connectivity/nsrm
mkdir /data/connectivity/nsrm 0771 system system
chown system system /data/connectivity/nsrm
# Create directory used by audio subsystem
mkdir /data/misc/audio 0770 audio audio
# Mounting of persist is moved to 'on emmc-fs' and 'on fs' sections
# We chown/chmod /persist again so because mount is run as root + defaults
chown system system /persist
chmod 0771 /persist
chmod 0664 /sys/devices/platform/msm_sdcc.1/polling
chmod 0664 /sys/devices/platform/msm_sdcc.2/polling
chmod 0664 /sys/devices/platform/msm_sdcc.3/polling
chmod 0664 /sys/devices/platform/msm_sdcc.4/polling
# Chown polling nodes as needed from UI running on system server
chown system system /sys/devices/platform/msm_sdcc.1/polling
chown system system /sys/devices/platform/msm_sdcc.2/polling
chown system system /sys/devices/platform/msm_sdcc.3/polling
chown system system /sys/devices/platform/msm_sdcc.4/polling
# Mobile DM Router
chmod 0660 /dev/lge_dm_tty0
chown system system /dev/lge_dm_tty0
# SSR feature
chmod 0660 /dev/ramdump_adsp
chown system system /dev/ramdump_adsp
chmod 0660 /dev/ramdump_audio-ocmem
chown system system /dev/ramdump_audio-ocmem
chmod 0660 /dev/ramdump_modem
chown system system /dev/ramdump_modem
chmod 0660 /dev/ramdump_smem-modem
chown system system /dev/ramdump_smem-modem
chmod 0660 /dev/ramdump_smem-smd
chown system system /dev/ramdump_smem-smd
chmod 0660 /dev/ramdump_venus
chown system system /dev/ramdump_venus
chmod 0660 /dev/ramdump_pronto
chown system system /dev/ramdump_pronto
# ADD LGODL
chmod 0660 /dev/lge_dm_dev_tty0
chown system system /dev/lge_dm_dev_tty0
#Create the symlink to qcn wpa_supplicant folder for ar6000 wpa_supplicant
mkdir /data/system 0775 system system
#symlink /data/misc/wifi/wpa_supplicant /data/system/wpa_supplicant
#Create directories for wiper services
mkdir /data/wpstiles/ 0755 shell
mkdir /data/wiper 0755 gps qcom_oncrpc
#Create directories for gpsone_daemon services
mkdir /data/misc/gpsone_d 0770 system gps
#Create directories for QuIPS
mkdir /data/misc/quipc 0770 gps system
#Create directories for Location services
mkdir /data/misc/location 0770 gps gps
mkdir /data/misc/location/mq 0770 gps gps
mkdir /data/misc/location/xtwifi 0770 gps gps
#Create directory from IMS services
mkdir /data/shared 0755
chown system system /data/shared
#Create directory for FOTA
mkdir /data/fota 0771
chown system system /data/fota
#Create directory for hostapd
mkdir /data/hostapd 0770 system wifi
# Create /data/time folder for time-services
mkdir /data/time/ 0700 system system
mkdir /data/audio/ 0770 media audio
# Enable the setgid bit on the directory
chmod 2770 /data/audio
setprop vold.post_fs_data_done 1
#Create a folder for SRS to be able to create a usercfg file
mkdir /data/data/media 0770 media media
# LGE_CHANGE_S
mount debugfs /sys/kernel/debug /sys/kernel/debug
# LGE_CHANGE_E
# Make directory for DRM
chown system system /persist-lg
chmod 0771 /persist-lg
#HDCP2.x for Wi-Fi Display
mkdir /persist-lg/wfd 0770 system system
chown system system /persist-lg/wfd
chmod 0770 /persist-lg/wfd
#sns partition permission change
chown system system /sns
chmod 0775 /sns
# seandroid using auditd
mkdir /data/misc/audit 02750 system system
service auditd /system/bin/auditd -k
class main
# Export GPIO56 for fusion targets to enable/disable hub
service usbhub_init /system/bin/usbhub_init
class late_start
user root
disabled
oneshot
on property:persist.radio.atfwd.start=false
stop atfwd
on property:init.svc.surfaceflinger=stopped
stop ppd
stop hdmid
on property:ro.board.platform=msm7630_fusion
start usbhub_init
on property:init.svc.wpa_supplicant=stopped
stop dhcpcd
on property:bluetooth.isEnabled=true
start btwlancoex
write /sys/class/bluetooth/hci0/idle_timeout 7000
#LG_UPDATE_START : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [START]
#on property:bluetooth.sap.status=running
# start bt-sap
#on property:bluetooth.sap.status=stopped
# stop bt-sap
#on property:bluetooth.dun.status=running
# start bt-dun
#on property:bluetooth.dun.status=stopped
# stop bt-dun
#LG_UPDATE_END : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [END]
on property:ro.bluetooth.ftm_enabled=true
start ftmd
service last_kmsg_backup /system/bin/sh /system/etc/last_kmsg_backup.sh
class main
disabled
oneshot
service zetaw-c_core-sh /system/bin/sh /init.zetaw.class_core.sh
class core
user root
oneshot
service zetaw-c_main-sh /system/bin/sh /init.class_main.sh
class main
user root
oneshot
service ril-qmi /system/bin/sh /init.zetaw.ril.sh
class main
user root
oneshot
service sdcard /system/bin/sdcard -u 1023 -g 1023 -l /data/media /mnt/shell/emulated
class late_start
# LGE_CHANGE_S, [email protected], 2013-10-30, fuse for external_SD
service fuse_external_SD /system/bin/sdcard -u 1023 -g 1023 -w 1023 -d /mnt/media_rw/external_SD /storage/external_SD
class late_start
disabled
# LGE_CHANGE_E, [email protected], 2013-10-30, fuse for external_SD
on property:vold.decrypt=trigger_restart_framework
start zetaw-c_main-sh
start config_bluetooth
on property:persist.env.fastdorm.enabled=true
setprop persist.radio.data_no_toggle 1
service cnd /system/bin/cnd
class late_start
socket cnd stream 660 root inet
service irsc_util /system/bin/logwrapper /system/bin/irsc_util "/etc/sec_config"
class main
user root
oneshot
service rmt_storage /system/bin/rmt_storage
class core
user root
disabled
on property:ro.boot.emmc=true
start rmt_storage
service rfs_access /system/bin/rfs_access
class core
user system
group system net_raw
on property:ro.boot.emmc=true
start rfs_access
#LG_UPDATE_START : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [START]
#on property:bluetooth.start_hci=true
# start start_hci_filter
#on property:bluetooth.start_hci=false
# stop start_hci_filter
#service start_hci_filter /system/bin/wcnss_filter
# class late_start
# user bluetooth
# group bluetooth
# disabled
#service config_bluetooth /system/bin/sh /system/etc/init.zetaw.bt.sh "onboot"
# class core
# user root
# oneshot
#service hciattach /system/bin/sh /system/etc/init.zetaw.bt.sh
# class late_start
# user bluetooth
# group bluetooth net_bt_admin
# disabled
# oneshot
#on property:bluetooth.hciattach=true
# start hciattach
#on property:bluetooth.hciattach=false
# setprop bluetooth.status off
#service hciattach_ath3k /system/bin/sh /system/etc/init.ath3k.bt.sh
# class late_start
# user bluetooth
# group system bluetooth net_bt_admin misc
# disabled
# oneshot
#LG_UPDATE_END : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [END]
service bt-dun /system/bin/dun-server /dev/smd7 /dev/rfcomm0
class late_start
user bluetooth
group bluetooth net_bt_admin inet
disabled
oneshot
service bt-sap /system/bin/sapd 15
user bluetooth
group bluetooth net_bt_admin
class late_start
disabled
oneshot
service ftmd /system/bin/logwrapper /system/bin/ftmdaemon
class late_start
user root
group bluetooth net_bt_admin misc net_bt_stack qcom_diag
disabled
oneshot
service bridgemgrd /system/bin/bridgemgrd
class late_start
user radio
group radio qcom_diag
disabled
service port-bridge /system/bin/port-bridge /dev/smd0 /dev/ttyGS0
class late_start
user system
group system inet
disabled
service qmiproxy /system/bin/qmiproxy
class main
user radio
group radio qcom_diag
disabled
# QMUX must be in multiple groups to support external process connections
service qmuxd /system/bin/qmuxd
class main
user radio
group radio audio bluetooth gps qcom_diag
disabled
service netmgrd /system/bin/netmgrd
class main
disabled
service sensors /system/bin/sensors.qcom
class late_start
user root
group root
disabled
on property:ro.use_data_netmgrd=false
# netmgr not supported on specific target
stop netmgrd
# Adjust socket buffer to enlarge TCP receive window for high bandwidth
# but only if ro.data.large_tcp_window_size property is set.
on property:ro.data.large_tcp_window_size=true
write /proc/sys/net/ipv4/tcp_adv_win_scale 2
#LG_UPDATE_START : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [START]
#service btwlancoex /system/bin/sh /system/etc/init.zetaw.coex.sh
# class late_start
# user bluetooth
# group bluetooth net_bt_admin inet net_admin net_raw
# disabled
# oneshot
#LG_UPDATE_END : move to init.zetaw.bt_qct.rc to seperate vendor's resource 20140108, [END]
service amp_init /system/bin/amploader -i
class late_start
user root
disabled
oneshot
service amp_load /system/bin/amploader -l 7000
class late_start
user root
disabled
oneshot
service amp_unload /system/bin/amploader -u
class late_start
user root
disabled
oneshot
service p2p_supplicant /system/bin/wpa_supplicant \
-ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \
-I/system/etc/wifi/p2p_supplicant_overlay.conf -N \
-iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
-I/system/etc/wifi/wpa_supplicant_overlay.conf \
-O/data/misc/wifi/sockets -puse_p2p_group_interface=1 \
-e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
# we will start as root and wpa_supplicant will switch to user wifi
# after setting up the capabilities required for WEXT
# user wifi
# group wifi inet keystore
class main
socket wpa_wlan0 dgram 660 wifi wifi
disabled
oneshot
service wpa_supplicant /system/bin/wpa_supplicant \
-iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \
-I/system/etc/wifi/wpa_supplicant_overlay.conf \
-O/data/misc/wifi/sockets -d \
-e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0
# we will start as root and wpa_supplicant will switch to user wifi
# after setting up the capabilities required for WEXT
# user wifi
# group wifi inet keystore
class main
socket wpa_wlan0 dgram 660 wifi wifi
disabled
oneshot
#LGE_CHANGE_S, 20120709, [email protected] by 2lee, Remove 'G'(DHCPCD_GATEWAY) option.
service dhcpcd_wlan0 /system/bin/dhcpcd -ABKL
class late_start
disabled
oneshot
service dhcpcd_p2p /system/bin/dhcpcd -ABKL
class late_start
disabled
oneshot
#LGE_CHANGE_E, 20120709, [email protected] by 2lee, Remove 'G'(DHCPCD_GATEWAY) option.
service iprenew_wlan0 /system/bin/dhcpcd -n
class late_start
disabled
oneshot
service iprenew_p2p /system/bin/dhcpcd -n
class late_start
disabled
oneshot
service ptt_socket_app /system/bin/ptt_socket_app
class main
user system
group system
oneshot
service dhcpcd_bt-pan /system/bin/dhcpcd -BKLG
class late_start
disabled
oneshot
service iprenew_bt-pan /system/bin/dhcpcd -n
class late_start
disabled
oneshot
service dhcpcd_bnep0 /system/bin/dhcpcd -BKLG
disabled
oneshot
service dhcpcd_bnep1 /system/bin/dhcpcd -BKLG
disabled
oneshot
service dhcpcd_bnep2 /system/bin/dhcpcd -BKLG
disabled
oneshot
service dhcpcd_bnep3 /system/bin/dhcpcd -BKLG
disabled
oneshot
service dhcpcd_bnep4 /system/bin/dhcpcd -BKLG
disabled
oneshot
service gpsone_daemon /system/bin/gpsone_daemon
class late_start
user gps
group gps inet net_raw
disabled
service quipc_igsn /system/bin/quipc_igsn
class late_start
user gps
group inet gps qcom_diag
disabled
service quipc_main /system/bin/quipc_main
class late_start
user gps
group gps net_admin wifi inet qcom_diag
disabled
service location_mq /system/bin/location-mq
class late_start
user gps
group gps
disabled
service xtwifi_inet /system/bin/xtwifi-inet-agent
class late_start
user gps
group inet gps
disabled
service xtwifi_client /system/bin/xtwifi-client
class late_start
user gps
group net_admin wifi inet gps qcom_diag
disabled
service lowi-server /system/bin/lowi-server
class late_start
user gps
group gps net_admin wifi inet qcom_diag
disabled
service fm_dl /system/bin/sh /system/etc/init.zetaw.fm.sh
class late_start
user root
group system fm_radio
disabled
oneshot
on property:crypto.driver.load=1
insmod /system/lib/modules/qce.ko
insmod /system/lib/modules/qcedev.ko
on property:crypto.driver.load=0
exec /system/bin/rmmod qcedev.ko
exec /system/bin/rmmod qce.ko
service drmdiag /system/bin/drmdiagapp
class late_start
user root
disabled
oneshot
on property:drmdiag.load=1
start drmdiag
on property:drmdiag.load=0
stop drmdiag
service zetaw-sh /system/bin/sh /init.zetaw.sh
class late_start
user root
oneshot
service zetaw-post-boot /system/bin/sh /system/etc/init.zetaw.post_boot.sh
class late_start
user root
disabled
oneshot
service wifi-sdio-on /system/bin/sh /system/etc/init.zetaw.sdio.sh
class late_start
group wifi inet
disabled
oneshot
service wifi-crda /system/bin/sh /system/etc/init.crda.sh
class late_start
user root
disabled
oneshot
on property:init.svc.bootanim=stopped
start zetaw-post-boot
service atfwd /system/bin/ATFWD-daemon
class late_start
user system
group system radio
service hdmid /system/bin/hdmid
class late_start
socket hdmid stream 0660 root system graphics
disabled
service ppd /system/bin/mm-pp-daemon
class late_start
user system
socket pps stream 0660 system system graphics
group system graphics
service hostapd /system/bin/hostapd -dddd /data/hostapd/hostapd.conf
class late_start
user root
group root
oneshot
disabled
service ds_fmc_appd /system/bin/ds_fmc_appd -p "rmnet0" -D
class late_start
group radio wifi inet
disabled
oneshot
on property:persist.data.ds_fmc_app.mode=1
start ds_fmc_appd
service ims_regmanager /system/bin/exe-ims-regmanagerprocessnative
class late_start
group net_bt_admin inet radio wifi
disabled
on property:persist.ims.regmanager.mode=1
start ims_regmanager
on property:ro.data.large_tcp_window_size=true
# Adjust socket buffer to enlarge TCP receive window for high bandwidth (e.g. DO-RevB)
write /proc/sys/net/ipv4/tcp_adv_win_scale 2
service battery_monitor /system/bin/battery_monitor
user system
group system
disabled
service ril-daemon1 /system/bin/rild -c 1
class main
socket rild1 stream 660 root radio
socket rild-debug1 stream 660 radio system
user root
disabled
group radio cache inet misc audio sdcard_r sdcard_rw diag qcom_diag log
service ril-daemon2 /system/bin/rild -c 2
class main
socket rild2 stream 660 root radio
socket rild-debug2 stream 660 radio system
user root
disabled
group radio cache inet misc audio sdcard_r sdcard_rw diag qcom_diag log
service profiler_daemon /system/bin/profiler_daemon
class late_start
user root
group root
disabled
#service sdcard /system/bin/sdcard -u 1023 -g 1023 -l /data/media /mnt/shell/emulated
# class late_start
# Binding fuse mount point to /storage/emulated/legacy
# Palman nok so extermination!!!
#on property:init.svc.sdcard=running
# wait /mnt/shell/emulated/0
# mount none /mnt/shell/emulated/0 /storage/emulated/legacy bind
service hcidump /system/bin/sh /system/etc/hcidump.sh
user bluetooth
group bluetooth system net_bt_admin net_admin
disabled
oneshot
service charger /charger
class charger
# Mobile DM Router
service lg_dm_router /system/bin/lg_dm_router
class late_start
user system
group system
disabled
socket Full.DM.port stream 660 system system
on property:persist.service.dm_app.enable=true
start lg_dm_router
on property:persist.service.dm_app.enable=false
stop lg_dm_router
# ADD LGODL
service lg_dm_dev_router /system/bin/lg_dm_dev_router
class late_start
user root
group system sdcard_r sdcard_rw
disabled
oneshot
on property:persist.service.lge.odl_on=true
start lg_dm_dev_router
on property:persist.service.lge.odl_on=false
service ssr_diag /system/bin/ssr_diag
class late_start
user system
group system
# SSR setting
on property:persist.sys.ssr.restart_level=*
exec /system/bin/sh /init.zetaw.ssr.sh ${persist.sys.ssr.restart_level} ${ro.build.type}
# [BEGIN][LGE_WIFI][QCT][[email protected]] add riva_ramdump service
# WIFI SSR settings
on property:persist.sys.ssr.restart_level_w=*
exec /system/bin/sh /system/etc/init.zetaw.ssr.wifi.sh ${persist.sys.ssr.restart_level_w}
# [END][LGE_WIFI][QCT][[email protected]] add riva_ramdump service
# [BEGIN][LGE_WIFI][QCT][[email protected]] set SSR3 and rivadump enable depends on buildtype
on property:ro.build.type=user
setprop persist.sys.ssr.restart_level_w 3
on property:ro.build.type=userdebug
setprop persist.sys.ssr.restart_level_w 3
setprop persist.service.rivadump.enable 1
# [END][LGE_WIFI][QCT][[email protected]] set SSR3 and rivadump enable depends on buildtype
# Define fastmmi
service fastmmi /system/bin/mmi
user root
group root
disabled
service fastmmisrv /system/bin/sh /init.zetaw.factory.sh
user root
disabled
oneshot
# sreadahead daemon
service sreadahead /sbin/treadahead
oneshot
disabled
# sreadahead daemon
service sreadahead-check /sbin/sreadahead_check
class main
user root
group root
oneshot
on ffbm
start fastmmisrv
service diag_mdlog_start /system/bin/diag_mdlog
class late_start
user sdcard_rw
group system qcom_diag sdcard_rw sdcard_r media_rw
disabled
oneshot
service diag_mdlog_stop /system/bin/diag_mdlog -k
class late_start
user sdcard_rw
group system qcom_diag sdcard_rw sdcard_r media_rw
disabled
oneshot
on property:ro.minios.enable=1
start zetaw-post-boot
# Factory, ATD
service atd /system/bin/atd /dev/ttyGS0 /dev/smd0
socket atd stream 0660 system inet
class main
# Factory, MTSD [email protected]
service mtsd /system/bin/mtsd