Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 1 | ifneq ($(TARGET_SIMULATOR),true) |
| 2 | ifeq ($(TARGET_ARCH),arm) |
| 3 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4 | LOCAL_PATH := $(call my-dir) |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | commands_recovery_local_path := $(LOCAL_PATH) |
| 8 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 9 | LOCAL_SRC_FILES := \ |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 10 | recovery.c \ |
| 11 | bootloader.c \ |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 12 | install.c \ |
| 13 | roots.c \ |
| 14 | ui.c \ |
Doug Zongker | 540d57f | 2011-01-18 13:36:58 -0800 | [diff] [blame^] | 15 | verifier.c |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 16 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 17 | LOCAL_MODULE := recovery |
| 18 | |
| 19 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 20 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 21 | RECOVERY_API_VERSION := 3 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 22 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
| 23 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 24 | LOCAL_STATIC_LIBRARIES := |
| 25 | |
| 26 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 27 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 28 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 29 | LOCAL_STATIC_LIBRARIES += libext4_utils libz |
| 30 | endif |
| 31 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 32 | # This binary is in the recovery ramdisk, which is otherwise a copy of root. |
| 33 | # It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses |
| 34 | # a (redundant) copy of the binary in /system/bin for user builds. |
| 35 | # TODO: Build the ramdisk image in a more principled way. |
| 36 | |
| 37 | LOCAL_MODULE_TAGS := eng |
| 38 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 39 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
| 40 | LOCAL_SRC_FILES += default_recovery_ui.c |
| 41 | else |
| 42 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 43 | endif |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 44 | LOCAL_STATIC_LIBRARIES += libext4_utils libz |
Doug Zongker | 608fa02 | 2009-07-15 18:10:28 -0700 | [diff] [blame] | 45 | LOCAL_STATIC_LIBRARIES += libminzip libunz libmtdutils libmincrypt |
Doug Zongker | 19faefa | 2009-03-27 17:06:24 -0700 | [diff] [blame] | 46 | LOCAL_STATIC_LIBRARIES += libminui libpixelflinger_static libpng libcutils |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | LOCAL_STATIC_LIBRARIES += libstdc++ libc |
| 48 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 49 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 50 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 51 | include $(BUILD_EXECUTABLE) |
| 52 | |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 53 | |
| 54 | include $(CLEAR_VARS) |
| 55 | |
| 56 | LOCAL_SRC_FILES := verifier_test.c verifier.c |
| 57 | |
| 58 | LOCAL_MODULE := verifier_test |
| 59 | |
| 60 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 61 | |
| 62 | LOCAL_MODULE_TAGS := tests |
| 63 | |
| 64 | LOCAL_STATIC_LIBRARIES := libmincrypt libcutils libstdc++ libc |
| 65 | |
| 66 | include $(BUILD_EXECUTABLE) |
| 67 | |
| 68 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 69 | include $(commands_recovery_local_path)/minui/Android.mk |
Hristo Bojinov | db314d6 | 2010-08-02 10:29:49 -0700 | [diff] [blame] | 70 | include $(commands_recovery_local_path)/minelf/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | include $(commands_recovery_local_path)/minzip/Android.mk |
| 72 | include $(commands_recovery_local_path)/mtdutils/Android.mk |
| 73 | include $(commands_recovery_local_path)/tools/Android.mk |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 74 | include $(commands_recovery_local_path)/edify/Android.mk |
| 75 | include $(commands_recovery_local_path)/updater/Android.mk |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 76 | include $(commands_recovery_local_path)/applypatch/Android.mk |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | commands_recovery_local_path := |
Doug Zongker | c3885fa | 2009-06-11 17:05:58 -0700 | [diff] [blame] | 78 | |
| 79 | endif # TARGET_ARCH == arm |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 80 | endif # !TARGET_SIMULATOR |
Doug Zongker | c3885fa | 2009-06-11 17:05:58 -0700 | [diff] [blame] | 81 | |