Samsung has two android.hardware.power HAL. Take appropriate one.
Samsung includes both stock AOSP android.hardware.power service, and their own vendor.samsung.hardware.miscpower. Since the two HALs define the same full-qualified name, hwservicemanager takes whichever comes last. Using proper power HAL is needed for Samsung device to have proper sleep of the touchscreen, and better power handling.
This commit is contained in:
parent
26514452f0
commit
5570b50a52
@ -138,3 +138,8 @@ done
|
||||
|
||||
mount -o bind /system/phh/empty /vendor/overlay/SysuiDarkTheme/SysuiDarkTheme.apk || true
|
||||
mount -o bind /system/phh/empty /vendor/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk || true
|
||||
|
||||
#If we have both Samsung and AOSP power hal, take Samsung's
|
||||
if [ -f /vendor/bin/hw/vendor.samsung.hardware.miscpower@1.0-service ];then
|
||||
mount -o bind /system/phh/empty /vendor/bin/hw/android.hardware.power@1.0-service
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user