From 480ccee3bec6eedb254e122a3721ff411b3b1ddc Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Thu, 24 May 2018 14:07:52 +0900 Subject: [PATCH] AOSP: Mark as recovery_available:true Libraries that are direct or indirect dependencies of modules installed to recovery partition (e.g. adbd) are marked as recovery_available: true. This allows a recovery variant of the lib is created when it is depended by other recovery or recovery_available modules. Signed-off-by: Theodore Ts'o Google-Bug-Id: 79146551 Test: m -j Change-Id: I9db889c15e1f563a1e3f4e7dc5b630d19e3cf4c0 From AOSP commit: 4a9d5f4211818c70a1b2414e3774197386b7f245 --- lib/Android.bp | 1 + lib/uuid/Android.bp | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/Android.bp b/lib/Android.bp index b38d8b1..771bb59 100644 --- a/lib/Android.bp +++ b/lib/Android.bp @@ -6,6 +6,7 @@ cc_library_headers { name: "libext2-headers", host_supported: true, + recovery_available: true, target: { windows: { enabled: true, diff --git a/lib/uuid/Android.bp b/lib/uuid/Android.bp index 15c1292..ea349e3 100644 --- a/lib/uuid/Android.bp +++ b/lib/uuid/Android.bp @@ -3,6 +3,7 @@ cc_library { name: "libext2_uuid", host_supported: true, + recovery_available: true, unique_host_soname: true, defaults: ["e2fsprogs-defaults"], srcs: [ -- 1.8.3.1