summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-07-01 18:21:12 +0200
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-07-01 18:21:12 +0200
commitb442b45bdd7df72de4958fad40f8ac675203d5c1 (patch)
tree9c83502e29826fcd2d28c62e9451d93b910247ff /Android.mk
parentam 60faafcf: merge from open-source master (diff)
parentsupport userdata and cache partitions using emmc/ext4 instead of mtd/yaffs (diff)
downloadandroid_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar.gz
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar.bz2
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar.lz
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar.xz
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.tar.zst
android_bootable_recovery-b442b45bdd7df72de4958fad40f8ac675203d5c1.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index b0fefbd90..4a3d28577 100644
--- a/Android.mk
+++ b/Android.mk
@@ -24,6 +24,14 @@ LOCAL_FORCE_STATIC_EXECUTABLE := true
RECOVERY_API_VERSION := 3
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
+LOCAL_STATIC_LIBRARIES :=
+
+ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
+LOCAL_CFLAGS += -DUSE_EXT4
+LOCAL_C_INCLUDES += system/extras/ext4_utils
+LOCAL_STATIC_LIBRARIES += libext4_utils libz
+endif
+
# This binary is in the recovery ramdisk, which is otherwise a copy of root.
# It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses
# a (redundant) copy of the binary in /system/bin for user builds.
@@ -31,7 +39,6 @@ LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
LOCAL_MODULE_TAGS := eng
-LOCAL_STATIC_LIBRARIES :=
ifeq ($(TARGET_RECOVERY_UI_LIB),)
LOCAL_SRC_FILES += default_recovery_ui.c
else