33 lines
1.4 KiB
Bash
33 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
model=$(</proc/device-tree/model)
|
|
if [[ "$model" =~ ^(.*)MT6771(.*)$ ]];
|
|
then
|
|
#patched to reduce cpu usage of mtkfusionrild - Cosmo
|
|
mount -o ro,bind /usr/libexec/cosmocom-overlay/vendor/lib64/libmtk-ril.so /vendor/lib64/libmtk-ril.so
|
|
fi
|
|
|
|
if [[ "$model" =~ ^(.*)MT6873(.*)$ ]];
|
|
then
|
|
# overlay /vendor/bin/vndservicemanager - Astro
|
|
mount -o bind /usr/share/astroslide-overlay/vendor/bin/vndservicemanager /vendor/bin/vndservicemanager
|
|
|
|
# prevent gralloc.default.so from being loaded by libhybris
|
|
mount -o bind /dev/null /vendor/lib64/hw/gralloc.default.so
|
|
fi
|
|
|
|
#disable secure_element and keymaster as they always fail
|
|
mount -o ro,bind /dev/null /vendor/etc/init/android.hardware.secure_element@1.0-service.rc
|
|
mount -o ro,bind /dev/null /vendor/etc/init/android.hardware.keymaster@3.0-service.rc
|
|
|
|
#disable loading of the vendor wlan and bt kernel modules as we include it in our kernel anyway
|
|
mount -o ro,bind /dev/null /vendor/etc/init/init.wlan_drv.rc
|
|
mount -o ro,bind /dev/null /vendor/etc/init/init.bt_drv.rc
|
|
mount -o ro,bind /dev/null /vendor/etc/init/init.wmt_drv.rc
|
|
|
|
#disable loading of the vendor fmradio and gps drivers as we build and launch our own within gemian
|
|
mount -o ro,bind /dev/null /vendor/etc/init/init.fmradio_drv.rc
|
|
mount -o ro,bind /dev/null /vendor/etc/init/init.gps_drv.rc
|
|
|
|
#disable health?
|
|
#/vendor/etc/init/android.hardware.health\@2.0-service.rc
|