From 6552a4f8b7b001b5cbd1f8405c2cbdc693ead474 Mon Sep 17 00:00:00 2001 From: Ivan Vecera Date: Thu, 18 Jan 2024 14:56:28 +0100 Subject: [PATCH] sdm710-common: rootdir: Do not try to install prebuilt apps We do not have AdrenoTest.apk or SWE_Browser.apk so it does not make sense to try to install them. Change-Id: I0615e2e50526f960d5a6c221798ab5ebd1162d7b --- rootdir/etc/init.qcom.post_boot.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/rootdir/etc/init.qcom.post_boot.sh b/rootdir/etc/init.qcom.post_boot.sh index 76ace71..ff5b88a 100644 --- a/rootdir/etc/init.qcom.post_boot.sh +++ b/rootdir/etc/init.qcom.post_boot.sh @@ -5127,20 +5127,6 @@ case "$target" in ;; esac -# Install AdrenoTest.apk if not already installed -if [ -f /data/prebuilt/AdrenoTest.apk ]; then - if [ ! -d /data/data/com.qualcomm.adrenotest ]; then - pm install /data/prebuilt/AdrenoTest.apk - fi -fi - -# Install SWE_Browser.apk if not already installed -if [ -f /data/prebuilt/SWE_AndroidBrowser.apk ]; then - if [ ! -d /data/data/com.android.swe.browser ]; then - pm install /data/prebuilt/SWE_AndroidBrowser.apk - fi -fi - # Change adj level and min_free_kbytes setting for lowmemory killer to kick in case "$target" in "msm8660")