2009-06-09 21:22:33 +02:00
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
commands_recovery_local_path := $(LOCAL_PATH)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2009-11-30 17:40:57 +01:00
|
|
|
recovery.c \
|
|
|
|
bootloader.c \
|
|
|
|
install.c \
|
|
|
|
roots.c \
|
|
|
|
ui.c \
|
|
|
|
verifier.c \
|
2010-02-26 01:47:02 +01:00
|
|
|
encryptedfs_provisioning.c
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES += test_roots.c
|
|
|
|
|
|
|
|
LOCAL_MODULE := recovery
|
|
|
|
|
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
|
2010-02-02 22:09:52 +01:00
|
|
|
RECOVERY_API_VERSION := 3
|
2009-06-18 02:29:40 +02:00
|
|
|
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
|
|
|
|
|
2010-06-30 02:36:28 +02:00
|
|
|
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
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# 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.
|
|
|
|
# TODO: Build the ramdisk image in a more principled way.
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := eng
|
|
|
|
|
2009-06-09 21:22:33 +02:00
|
|
|
ifeq ($(TARGET_RECOVERY_UI_LIB),)
|
|
|
|
LOCAL_SRC_FILES += default_recovery_ui.c
|
|
|
|
else
|
|
|
|
LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
|
|
|
|
endif
|
2009-07-16 03:10:28 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES += libminzip libunz libmtdutils libmincrypt
|
2009-03-28 01:06:24 +01:00
|
|
|
LOCAL_STATIC_LIBRARIES += libminui libpixelflinger_static libpng libcutils
|
2009-03-04 04:28:42 +01:00
|
|
|
LOCAL_STATIC_LIBRARIES += libstdc++ libc
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2009-12-10 02:01:45 +01:00
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := verifier_test.c verifier.c
|
|
|
|
|
|
|
|
LOCAL_MODULE := verifier_test
|
|
|
|
|
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
|
|
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
|
2009-06-09 21:22:33 +02:00
|
|
|
include $(commands_recovery_local_path)/minui/Android.mk
|
2009-03-04 04:28:42 +01:00
|
|
|
include $(commands_recovery_local_path)/minzip/Android.mk
|
|
|
|
include $(commands_recovery_local_path)/mtdutils/Android.mk
|
|
|
|
include $(commands_recovery_local_path)/tools/Android.mk
|
2009-06-10 23:11:53 +02:00
|
|
|
include $(commands_recovery_local_path)/edify/Android.mk
|
|
|
|
include $(commands_recovery_local_path)/updater/Android.mk
|
2010-02-18 01:11:44 +01:00
|
|
|
include $(commands_recovery_local_path)/applypatch/Android.mk
|
2009-03-04 04:28:42 +01:00
|
|
|
commands_recovery_local_path :=
|
2009-06-12 02:05:58 +02:00
|
|
|
|
|
|
|
endif # TARGET_ARCH == arm
|
2009-11-30 17:40:57 +01:00
|
|
|
endif # !TARGET_SIMULATOR
|
2009-06-12 02:05:58 +02:00
|
|
|
|