From 99d0cda107099216bf96ff1715e3277eb25b4a31 Mon Sep 17 00:00:00 2001 From: Pierre-Hugues Husson Date: Tue, 28 Aug 2018 14:53:16 +0200 Subject: [PATCH] Fix MTK RIL by disablimg IMS and EPDG This isn't ideal from a user point-of-view because the device will reboot on first boot. Thanks a lot @Dinolek ! --- phh-on-boot.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/phh-on-boot.sh b/phh-on-boot.sh index 8686ae4..9365cf7 100644 --- a/phh-on-boot.sh +++ b/phh-on-boot.sh @@ -1,5 +1,12 @@ #!/system/bin/sh +if [ -f /vendor/bin/mtkmal ];then + if [ "$(getprop persist.mtk_ims_support)" == 1 ];then + setprop persist.mtk_ims_support 0 + setprop persist.mtk_epdg_support 0 + reboot + fi +fi #Clear looping services sleep 30