summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2019-10-08 17:38:17 +0530
committerYongqin Liu <yongqin.liu@linaro.org>2022-03-14 23:12:16 +0800
commit3fdd8276cadeb261b6b1f0a661e466a3ebc5cffd (patch)
treead00830556cfa54b213bb5ce8fceda8a079ce3fe
parent646879bd3f64bd0a8aab5230deaac89e1a7239ad (diff)
downloadhikey-3fdd8276cadeb261b6b1f0a661e466a3ebc5cffd.tar.gz
Add default health service
Start default Health service to keep BatteryService happy, otherwise AOSP runs into bootloop with following exceptions: --------------------------------------------------- E BatteryService: health: cannot register callback. (no supported health HAL service) --<snip>-- E System : ************ Failure starting system services E System : java.lang.RuntimeException: Failed to start service com.android.server.BatteryService: onStart threw an exception --<snip>-- E Zygote : System zygote died with exception E Zygote : java.lang.RuntimeException: Failed to start service com.android.server.BatteryService: onStart threw an exception --<snip>-- E AndroidRuntime: *** FATAL EXCEPTION IN SYSTEM PROCESS: main E AndroidRuntime: java.lang.RuntimeException: Failed to start service com.android.server.BatteryService: onStart threw an exception --<snip>-- I Zygote : Process 1660 exited due to signal 9 (Killed) E Zygote : Exit zygote because system server (pid 1660) has terminated --------------------------------------------------- Change-Id: I653dd3c177e6f9cc57fe6d69faae776680fd3423 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--device-common.mk5
-rw-r--r--manifest.xml9
2 files changed, 14 insertions, 0 deletions
diff --git a/device-common.mk b/device-common.mk
index 9e721a58..3d346243 100644
--- a/device-common.mk
+++ b/device-common.mk
@@ -274,3 +274,8 @@ PRODUCT_PACKAGES += \
libunwindstack.vndk-sp\
liblzma.vndk-sp\
libion.vndk-sp\
+
+# Health
+PRODUCT_PACKAGES += \
+ android.hardware.health@2.0-service \
+ android.hardware.health@2.0-impl
diff --git a/manifest.xml b/manifest.xml
index c6b7a220..bbd74a2b 100644
--- a/manifest.xml
+++ b/manifest.xml
@@ -183,4 +183,13 @@
<instance>default</instance>
</interface>
</hal>
+ <hal format="hidl">
+ <name>android.hardware.health</name>
+ <transport>hwbinder</transport>
+ <version>2.0</version>
+ <interface>
+ <name>IHealth</name>
+ <instance>default</instance>
+ </interface>
+ </hal>
</manifest>