Merge "init: qcom: Install AdrenoTest.apk on first bootup" into jb

This commit is contained in:
Linux Build Service Account 2012-08-16 11:04:56 -07:00 committed by QuIC Gerrit Code Review
commit 903acabb72
1 changed files with 7 additions and 0 deletions

View File

@ -253,3 +253,10 @@ case "$target" in
echo 5120 > /proc/sys/vm/min_free_kbytes
;;
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