summaryrefslogtreecommitdiffstats
path: root/fs_mgr
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2018-05-24 14:11:00 +0900
committerJiyong Park <jiyong@google.com>2018-05-24 14:11:11 +0900
commita0e75045e6817a51e4e6b05880d871525a4d52fe (patch)
tree5d65ece1bd5bcba61ff8617baa096c1e3a70b5ad /fs_mgr
parent98c1b1ccf67113957f1e4d8678cf8b5a1fe747e1 (diff)
downloadsystem_core-a0e75045e6817a51e4e6b05880d871525a4d52fe.tar.gz
system_core-a0e75045e6817a51e4e6b05880d871525a4d52fe.tar.bz2
system_core-a0e75045e6817a51e4e6b05880d871525a4d52fe.zip
Build adbd for recovery
adbd (and its dependencies) are marked as recovery_available:true so that recovery version of the binary is built separately from the one for system partition. This allows us to stop copying the system version to the recovery partition and also opens up the way to enable shared libraries in the recovery partition. Then we can also build adbd as a dynamic executable. Bug: 79146551 Test: m -j adbd.recovery Change-Id: Ib95614c7435f9d0afc02a0c7d5ae1a94e439e32a
Diffstat (limited to 'fs_mgr')
-rw-r--r--fs_mgr/Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs_mgr/Android.bp b/fs_mgr/Android.bp
index 05dba1524..bc3b04b02 100644
--- a/fs_mgr/Android.bp
+++ b/fs_mgr/Android.bp
@@ -33,6 +33,7 @@ cc_defaults {
cc_library_static {
name: "libfs_mgr",
defaults: ["fs_mgr_defaults"],
+ recovery_available: true,
export_include_dirs: ["include"],
include_dirs: ["system/vold"],
srcs: [
@@ -79,6 +80,7 @@ cc_library_static {
cc_library_static {
name: "libfstab",
vendor_available: true,
+ recovery_available: true,
defaults: ["fs_mgr_defaults"],
srcs: [
"fs_mgr_fstab.cpp",