aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Anderson <dvander@google.com>2023-12-12 05:43:38 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-12-12 05:43:38 +0000
commit1b0f7acd6ca9cba3d42c330a496b23744e6dc8fb (patch)
treee6a78f5a60594e0db85c77d96e882eb4dc6598ef
parent1d0e31fbf227b2664c2be81ab3cc5e04d043c226 (diff)
parent84f236dc27f8bdc39857eeb95d25fe64a91df44d (diff)
downloadrecovery-1b0f7acd6ca9cba3d42c330a496b23744e6dc8fb.tar.gz
Merge "Update recovery to use Health AIDL HAL V3." into main am: 74c6581ac5 am: f6f72ba97f am: 84f236dc27
Original change: https://android-review.googlesource.com/c/platform/bootable/recovery/+/2837349 Change-Id: Ie66a44cb41a6dd2a52c102ad3db50c08add69401 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp2
-rw-r--r--minadbd/Android.bp4
-rw-r--r--recovery_utils/Android.bp4
-rw-r--r--tests/Android.bp2
4 files changed, 6 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index fba358fd..9b2f80f0 100644
--- a/Android.bp
+++ b/Android.bp
@@ -162,7 +162,7 @@ cc_binary {
],
shared_libs: [
- "android.hardware.health-V2-ndk", // from librecovery_utils
+ "android.hardware.health-V3-ndk", // from librecovery_utils
"android.hardware.boot-V1-ndk",
"librecovery_ui",
],
diff --git a/minadbd/Android.bp b/minadbd/Android.bp
index c664d740..e96d130e 100644
--- a/minadbd/Android.bp
+++ b/minadbd/Android.bp
@@ -97,7 +97,7 @@ cc_binary {
],
shared_libs: [
- "android.hardware.health-V2-ndk", // from librecovery_utils
+ "android.hardware.health-V3-ndk", // from librecovery_utils
"libbase",
"libcrypto",
],
@@ -129,7 +129,7 @@ cc_test {
],
static_libs: [
- "android.hardware.health-V2-ndk", // from librecovery_utils
+ "android.hardware.health-V3-ndk", // from librecovery_utils
"libminadbd_services",
"libfusesideload",
"librecovery_utils",
diff --git a/recovery_utils/Android.bp b/recovery_utils/Android.bp
index 74392c52..c31c4073 100644
--- a/recovery_utils/Android.bp
+++ b/recovery_utils/Android.bp
@@ -75,11 +75,11 @@ cc_library_static {
shared_libs: [
// The following cannot be placed in librecovery_utils_defaults,
- // because at the time of writing, android.hardware.health-V2-ndk.so
+ // because at the time of writing, android.hardware.health-V3-ndk.so
// is not installed to the system image yet. (It is installed
// to the recovery ramdisk.) Hence, minadbd_test must link to it
// statically.
- "android.hardware.health-V2-ndk",
+ "android.hardware.health-V3-ndk",
],
export_include_dirs: [
diff --git a/tests/Android.bp b/tests/Android.bp
index cdfc0918..1fd26c4b 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -145,7 +145,7 @@ cc_test {
static_libs: libapplypatch_static_libs + librecovery_static_libs + [
"android.hardware.health-translate-ndk",
- "android.hardware.health-V2-ndk",
+ "android.hardware.health-V3-ndk",
"libhealthshim",
"librecovery_ui",
"libfusesideload",