summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorcodeworkx <codeworkx@cyanogenmod.org>2013-01-31 14:44:16 +0000
committercodeworkx <codeworkx@cyanogenmod.org>2013-03-03 17:14:54 +0000
commitfc1dcc1c50d2c6745d57dd7905c4e889a51e6af1 (patch)
tree64c13688a3e17f2b23c5df146e1704d646949275 /Android.mk
parent3ffe02b6d8cd244242482402632a5c1f356ecf94 (diff)
downloadsystem_vold-fc1dcc1c50d2c6745d57dd7905c4e889a51e6af1.tar.gz
system_vold-fc1dcc1c50d2c6745d57dd7905c4e889a51e6af1.tar.bz2
system_vold-fc1dcc1c50d2c6745d57dd7905c4e889a51e6af1.zip
vold: use blkid to detect filesystem type
In preparation for handling ext4 partitions via vold and fuse. Change-Id: Ibaccded63a7a293ad53f16afb80448ddd493554c
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk12
1 files changed, 8 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk
index 5335cf6..79ea6a7 100644
--- a/Android.mk
+++ b/Android.mk
@@ -23,14 +23,16 @@ common_src_files := \
common_c_includes := \
$(KERNEL_HEADERS) \
system/extras/ext4_utils \
- external/openssl/include
+ external/openssl/include \
+ external/e2fsprogs/lib
common_shared_libraries := \
libsysutils \
libcutils \
libdiskconfig \
libhardware_legacy \
- libcrypto
+ libcrypto \
+ libext2_blkid
include $(CLEAR_VARS)
@@ -54,7 +56,8 @@ LOCAL_C_INCLUDES := $(common_c_includes)
LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
-LOCAL_STATIC_LIBRARIES := libfs_mgr
+LOCAL_STATIC_LIBRARIES := \
+ libfs_mgr
LOCAL_MODULE_TAGS := eng tests
@@ -94,7 +97,8 @@ endif
LOCAL_SHARED_LIBRARIES := $(common_shared_libraries)
-LOCAL_STATIC_LIBRARIES := libfs_mgr
+LOCAL_STATIC_LIBRARIES := \
+ libfs_mgr
include $(BUILD_EXECUTABLE)