Change-Id: If8d0b57acc6b41c28c7a331e41db44d2 Signed-off-by: zenin1504 <me.zenin1504.dev@gmail.com>
56 lines
2.1 KiB
Plaintext
56 lines
2.1 KiB
Plaintext
#MIUI ADD: Modem_DecoupledQcom
|
|
# Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
# All rights reserved.
|
|
#END Modem_DecoupledQcom
|
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
|
#
|
|
on boot
|
|
#Create nicmd daemon socket area
|
|
mkdir /dev/socket/nicmd 0750 radio radio
|
|
|
|
#Assign core socket buffer thresholds to be ceiling value of technology maximums
|
|
#Increased technology maximums should be reflected here.
|
|
write /proc/sys/net/core/rmem_max 16777216
|
|
write /proc/sys/net/core/wmem_max 8388608
|
|
|
|
on post-fs-data
|
|
#Create nicmd daemon dir
|
|
mkdir /data/vendor/nicmd 2750 radio system
|
|
chmod 2750 /data/vendor/nicmd
|
|
|
|
# Create nicmd recovery file
|
|
write /data/vendor/nicmd/nicm_recovery ""
|
|
chown radio radio /data/vendor/nicmd/nicm_recovery
|
|
|
|
service vendor.nicmd /system/vendor/bin/nicmd
|
|
class main
|
|
#MIUI ADD: Modem_DecoupledQcom
|
|
user root
|
|
group root
|
|
#END Modem_DecoupledQcom
|
|
|
|
on property:persist.vendor.data.shs_ko_load=1
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -a -d /vendor/lib/modules rmnet_shs
|
|
|
|
on property:persist.vendor.data.shs_ko_load=0
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -r -d /vendor/lib/modules rmnet_shs
|
|
|
|
on property:persist.vendor.data.perf_ko_load=3
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -d /vendor/lib/modules rmnet_perf rmnet_perf_ingress_deag=N
|
|
|
|
on property:persist.vendor.data.perf_ko_load=2
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -d /vendor/lib/modules rmnet_perf rmnet_perf_opt_mode="udp"
|
|
|
|
on property:persist.vendor.data.perf_ko_load=1
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -a -d /vendor/lib/modules rmnet_perf
|
|
|
|
on property:persist.vendor.data.perf_ko_load=0
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -r -d /vendor/lib/modules rmnet_perf
|
|
|
|
on property:persist.vendor.data.offload_ko_load=1
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -a -d /vendor/lib/modules rmnet_offload
|
|
|
|
on property:persist.vendor.data.offload_ko_load=0
|
|
exec u:r:vendor_modprobe:s0 -- /vendor/bin/modprobe -r -d /vendor/lib/modules rmnet_offload
|
|
|