Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 1 | # Copyright (C) 2007 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 17 | ifdef project-path-for |
| 18 | ifeq ($(LOCAL_PATH),$(call project-path-for,recovery)) |
| 19 | PROJECT_PATH_AGREES := true |
Andrea Mennillo | f591c87 | 2015-11-03 20:58:11 +0100 | [diff] [blame] | 20 | BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 21 | endif |
| 22 | else |
| 23 | ifeq ($(LOCAL_PATH),bootable/recovery) |
| 24 | PROJECT_PATH_AGREES := true |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 25 | BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 26 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 27 | endif |
| 28 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 29 | ifeq ($(PROJECT_PATH_AGREES),true) |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 30 | |
Matt Mower | 047723c | 2015-12-10 01:31:15 -0600 | [diff] [blame] | 31 | ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22)) |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 32 | # Make recovery domain permissive for TWRP |
that | 8e213fd | 2015-10-17 00:17:53 +0200 | [diff] [blame] | 33 | BOARD_SEPOLICY_UNION += twrp.te |
| 34 | endif |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 35 | |
Motorhead1991 | 75b6f66 | 2014-06-12 15:58:33 -0700 | [diff] [blame] | 36 | include $(CLEAR_VARS) |
| 37 | |
Matt Mower | 1777cdc | 2015-09-26 15:56:56 -0500 | [diff] [blame] | 38 | TWRES_PATH := /twres/ |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 39 | TWHTCD_PATH := $(TWRES_PATH)htcd/ |
| 40 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 41 | TARGET_RECOVERY_GUI := true |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 42 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 43 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 44 | twrp.cpp \ |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 45 | fixContexts.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 46 | twrpTar.cpp \ |
bigbiff | 7b4c7a6 | 2015-01-01 19:44:14 -0500 | [diff] [blame] | 47 | twrpDU.cpp \ |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 48 | twrpDigest.cpp \ |
bigbiff | 7b4c7a6 | 2015-01-01 19:44:14 -0500 | [diff] [blame] | 49 | digest/md5.c \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 50 | find_file.cpp \ |
| 51 | infomanager.cpp |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 52 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 53 | LOCAL_SRC_FILES += \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 54 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 55 | partition.cpp \ |
| 56 | partitionmanager.cpp \ |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 57 | progresstracking.cpp \ |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 58 | twinstall.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 59 | twrp-functions.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 60 | openrecoveryscript.cpp \ |
| 61 | tarWrite.c |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 62 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 63 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 64 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 65 | endif |
| 66 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 67 | LOCAL_MODULE := recovery |
| 68 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 69 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 71 | #ifeq ($(HOST_OS),linux) |
| 72 | #LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 73 | #endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 74 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 75 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 76 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 77 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 78 | LOCAL_CFLAGS += -Wno-unused-parameter |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 79 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 80 | #LOCAL_STATIC_LIBRARIES := \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 81 | # libext4_utils_static \ |
| 82 | # libsparse_static \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 83 | # libminzip \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 84 | # libz \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 85 | # libmtdutils \ |
| 86 | # libmincrypt \ |
| 87 | # libminadbd \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 88 | # libminui \ |
| 89 | # libpixelflinger_static \ |
| 90 | # libpng \ |
| 91 | # libfs_mgr \ |
| 92 | # libcutils \ |
| 93 | # liblog \ |
| 94 | # libselinux \ |
| 95 | # libstdc++ \ |
| 96 | # libm \ |
| 97 | # libc |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 98 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 99 | LOCAL_C_INCLUDES += \ |
| 100 | system/vold \ |
| 101 | system/extras/ext4_utils \ |
| 102 | system/core/adb \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 103 | system/core/libsparse \ |
| 104 | external/zlib |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 105 | |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 106 | LOCAL_C_INCLUDES += bionic external/openssl/include $(LOCAL_PATH)/libmincrypt/includes |
| 107 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
| 108 | LOCAL_C_INCLUDES += external/stlport/stlport |
| 109 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 110 | |
| 111 | LOCAL_STATIC_LIBRARIES := |
| 112 | LOCAL_SHARED_LIBRARIES := |
| 113 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 114 | LOCAL_STATIC_LIBRARIES += libguitwrp |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 115 | LOCAL_SHARED_LIBRARIES += libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libminzip libaosprecovery libtwadbbu |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 116 | LOCAL_SHARED_LIBRARIES += libcrecovery |
| 117 | |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 118 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 119 | LOCAL_SHARED_LIBRARIES += libstlport |
| 120 | else |
| 121 | LOCAL_SHARED_LIBRARIES += libc++ |
| 122 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 123 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 124 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 125 | LOCAL_SHARED_LIBRARIES += libsparse |
| 126 | endif |
| 127 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 128 | ifeq ($(TW_OEM_BUILD),true) |
| 129 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 130 | BOARD_HAS_NO_REAL_SDCARD := true |
| 131 | TW_USE_TOOLBOX := true |
| 132 | TW_EXCLUDE_SUPERSU := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 133 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 134 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 135 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 136 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 137 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 138 | LOCAL_SHARED_LIBRARIES += libext4_utils |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 139 | ifneq ($(wildcard external/lz4/Android.mk),) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 140 | #LOCAL_STATIC_LIBRARIES += liblz4-static |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 141 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 142 | endif |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 143 | ifneq ($(wildcard external/libselinux/Android.mk),) |
| 144 | TWHAVE_SELINUX := true |
| 145 | endif |
| 146 | ifeq ($(TWHAVE_SELINUX), true) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 147 | #LOCAL_C_INCLUDES += external/libselinux/include |
| 148 | #LOCAL_STATIC_LIBRARIES += libselinux |
| 149 | #LOCAL_CFLAGS += -DHAVE_SELINUX -g |
Stephen Smalley | 1a11449 | 2012-01-13 07:59:51 -0500 | [diff] [blame] | 150 | endif # HAVE_SELINUX |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 151 | ifeq ($(TWHAVE_SELINUX), true) |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 152 | LOCAL_C_INCLUDES += external/libselinux/include |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 153 | LOCAL_SHARED_LIBRARIES += libselinux |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 154 | LOCAL_CFLAGS += -DHAVE_SELINUX -g |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 155 | ifneq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 156 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 157 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 158 | LOCAL_SHARED_LIBRARIES += libext4_utils |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 159 | ifneq ($(wildcard external/lz4/Android.mk),) |
| 160 | LOCAL_STATIC_LIBRARIES += liblz4-static |
| 161 | endif |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 162 | endif |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 163 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 164 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 165 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 166 | |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 167 | #ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 168 | # LOCAL_SRC_FILES += default_device.cpp |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 169 | #else |
| 170 | # LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 171 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 172 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 173 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 174 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 175 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 176 | ifeq ($(TW_EXCLUDE_MTP),) |
| 177 | LOCAL_SHARED_LIBRARIES += libtwrpmtp |
| 178 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 179 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 180 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 181 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 182 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 183 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 184 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 185 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 186 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 187 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 188 | endif |
| 189 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 190 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 191 | endif |
| 192 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 193 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 194 | endif |
| 195 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 196 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 197 | endif |
| 198 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 199 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 200 | endif |
| 201 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 202 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 203 | endif |
| 204 | ifeq ($(TW_HAS_NO_RECOVERY_PARTITION), true) |
| 205 | LOCAL_CFLAGS += -DTW_HAS_NO_RECOVERY_PARTITION |
| 206 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 207 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 208 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 209 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 210 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 211 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 212 | endif |
| 213 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 214 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 215 | endif |
| 216 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 217 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 218 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 219 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 220 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 221 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 222 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 223 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 224 | endif |
| 225 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 226 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 227 | endif |
| 228 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 229 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 230 | endif |
| 231 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 232 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 233 | endif |
| 234 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 235 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 236 | endif |
| 237 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 238 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 239 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 240 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 241 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 242 | endif |
| 243 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 244 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 245 | endif |
| 246 | #ifeq ($(TW_FLASH_FROM_STORAGE), true) Making this the default behavior |
| 247 | LOCAL_CFLAGS += -DTW_FLASH_FROM_STORAGE |
| 248 | #endif |
| 249 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 250 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 251 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 252 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 253 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 254 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 255 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 256 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 257 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 258 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 259 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 260 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 261 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 262 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 263 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 264 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 265 | TW_INCLUDE_CRYPTO := true |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 266 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 267 | ifeq ($(TW_INCLUDE_L_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 268 | TW_INCLUDE_CRYPTO := true |
| 269 | endif |
| 270 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 271 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 272 | LOCAL_SHARED_LIBRARIES += libcryptfslollipop libgpt_twrp |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 273 | LOCAL_C_INCLUDES += external/boringssl/src/include |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 274 | endif |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 275 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 276 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 277 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 278 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 279 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 280 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 281 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 282 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 283 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 284 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 285 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 286 | endif |
Greg Wallace | 36ade45 | 2015-11-08 13:54:25 -0500 | [diff] [blame] | 287 | ifneq ($(TW_DEFAULT_BRIGHTNESS),) |
| 288 | LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS) |
| 289 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 290 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 291 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 292 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 293 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 294 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 295 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 296 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 297 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 298 | else |
| 299 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 300 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 301 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
| 302 | ifeq ($(TARGET_CPU_VARIANT),krait) |
| 303 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 304 | endif |
| 305 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 306 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 307 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 308 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 309 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 310 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 311 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 312 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 313 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 314 | ifneq ($(TARGET_RECOVERY_INITRC),) |
| 315 | TW_EXCLUDE_DEFAULT_USB_INIT := true |
| 316 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 317 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 318 | LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD |
| 319 | endif |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 320 | ifneq ($(TW_DEFAULT_LANGUAGE),) |
| 321 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE) |
| 322 | else |
| 323 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en |
| 324 | endif |
Sergey 'Jin' Bostandzhyan | 80a90ed | 2013-01-04 02:29:03 +0100 | [diff] [blame] | 325 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 326 | LOCAL_ADDITIONAL_DEPENDENCIES := \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 327 | dump_image \ |
| 328 | erase_image \ |
| 329 | flash_image \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 330 | mke2fs.conf \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 331 | pigz \ |
| 332 | teamwin \ |
| 333 | toolbox_symlinks \ |
| 334 | twrp \ |
Ethan Yonker | 2d11d49 | 2014-12-12 11:43:21 -0600 | [diff] [blame] | 335 | unpigz_symlink \ |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 336 | fsck.fat \ |
| 337 | fatlabel \ |
| 338 | mkfs.fat \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 339 | permissive.sh \ |
| 340 | simg2img_twrp |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 341 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 342 | ifneq ($(TARGET_ARCH), arm64) |
Ethan Yonker | 4f6a976 | 2015-03-09 13:58:54 -0500 | [diff] [blame] | 343 | ifneq ($(TARGET_ARCH), x86_64) |
| 344 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 345 | else |
| 346 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 347 | endif |
Ethan Yonker | 1902c79 | 2014-12-03 16:48:36 -0600 | [diff] [blame] | 348 | else |
| 349 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 350 | endif |
| 351 | ifneq ($(TW_USE_TOOLBOX), true) |
| 352 | LOCAL_ADDITIONAL_DEPENDENCIES += busybox_symlinks |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 353 | else |
| 354 | ifneq ($(wildcard external/toybox/Android.mk),) |
| 355 | LOCAL_ADDITIONAL_DEPENDENCIES += toybox_symlinks |
| 356 | endif |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 357 | ifneq ($(wildcard external/zip/Android.mk),) |
| 358 | LOCAL_ADDITIONAL_DEPENDENCIES += zip |
| 359 | endif |
| 360 | ifneq ($(wildcard external/unzip/Android.mk),) |
| 361 | LOCAL_ADDITIONAL_DEPENDENCIES += unzip |
| 362 | endif |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 363 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 364 | ifneq ($(TW_NO_EXFAT), true) |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 365 | LOCAL_ADDITIONAL_DEPENDENCIES += mkexfatfs fsckexfat |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 366 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 367 | LOCAL_ADDITIONAL_DEPENDENCIES += exfat-fuse |
| 368 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 369 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 370 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 371 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 372 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk |
| 373 | else |
| 374 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk_static |
| 375 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 376 | endif |
| 377 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 378 | LOCAL_ADDITIONAL_DEPENDENCIES += openaes ../openaes/LICENSE |
| 379 | endif |
| 380 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
| 381 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 382 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 383 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 384 | endif |
| 385 | ifneq ($(TW_EXCLUDE_SUPERSU), true) |
| 386 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
Ethan Yonker | b82422a | 2016-01-20 08:48:49 -0600 | [diff] [blame] | 387 | install-recovery.sh 99SuperSUDaemon Superuser.apk |
| 388 | ifeq ($(TARGET_ARCH), arm) |
| 389 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 390 | chattr.pie libsupol.so suarm supolicy |
| 391 | endif |
| 392 | ifeq ($(TARGET_ARCH), arm64) |
| 393 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 394 | libsupol.soarm64 suarm64 supolicyarm64 |
| 395 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 396 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 397 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 398 | LOCAL_ADDITIONAL_DEPENDENCIES += fb2png |
| 399 | endif |
| 400 | ifneq ($(TW_OEM_BUILD),true) |
| 401 | LOCAL_ADDITIONAL_DEPENDENCIES += orscmd |
| 402 | endif |
| 403 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
| 404 | LOCAL_ADDITIONAL_DEPENDENCIES += bml_over_mtd |
| 405 | endif |
| 406 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 407 | LOCAL_ADDITIONAL_DEPENDENCIES += injecttwrp |
| 408 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 409 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
| 410 | LOCAL_ADDITIONAL_DEPENDENCIES += init.recovery.usb.rc |
| 411 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 412 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 413 | LOCAL_ADDITIONAL_DEPENDENCIES += logcat |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 414 | ifeq ($(TARGET_USES_LOGD), true) |
| 415 | LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc |
| 416 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 417 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 418 | # Allow devices to specify device-specific recovery dependencies |
| 419 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
| 420 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_RECOVERY_DEVICE_MODULES) |
| 421 | endif |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 422 | LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\" |
| 423 | LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\" |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 424 | ifeq ($(TW_INCLUDE_NTFS_3G),true) |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 425 | ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 4; echo $$?),0) |
| 426 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 427 | mount.ntfs \ |
| 428 | fsck.ntfs \ |
| 429 | mkfs.ntfs |
| 430 | else |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 431 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 432 | ntfs-3g \ |
| 433 | ntfsfix \ |
| 434 | mkntfs |
| 435 | endif |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 436 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 437 | ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) |
| 438 | ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0) |
| 439 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 440 | fsck.f2fs \ |
| 441 | mkfs.f2fs |
| 442 | endif |
| 443 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 444 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 445 | include $(BUILD_EXECUTABLE) |
| 446 | |
Ethan Yonker | 5c93369 | 2014-04-04 11:26:32 -0500 | [diff] [blame] | 447 | ifneq ($(TW_USE_TOOLBOX), true) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 448 | include $(CLEAR_VARS) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 449 | # Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead |
| 450 | BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links) |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 451 | exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 452 | |
Ethan Yonker | a60c786 | 2016-02-25 15:32:06 -0600 | [diff] [blame] | 453 | # Having /sbin/modprobe present on 32 bit devices with can cause a massive |
| 454 | # performance problem if the kernel has CONFIG_MODULES=y |
| 455 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 456 | ifneq ($(TARGET_ARCH), arm64) |
| 457 | ifneq ($(TARGET_ARCH), x86_64) |
| 458 | exclude += modprobe |
| 459 | endif |
| 460 | endif |
| 461 | endif |
| 462 | |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 463 | # If busybox does not have restorecon, assume it does not have SELinux support. |
| 464 | # Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts. |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 465 | ifeq ($(TWHAVE_SELINUX), true) |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 466 | ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),) |
| 467 | exclude += ls |
| 468 | endif |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 469 | endif |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 470 | |
| 471 | RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS))) |
| 472 | RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS)) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 473 | $(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox |
| 474 | $(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE) |
| 475 | @echo "Symlink: $@ -> $(BUSYBOX_BINARY)" |
| 476 | @mkdir -p $(dir $@) |
| 477 | @rm -rf $@ |
| 478 | $(hide) ln -sf $(BUSYBOX_BINARY) $@ |
| 479 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 480 | include $(CLEAR_VARS) |
| 481 | LOCAL_MODULE := busybox_symlinks |
| 482 | LOCAL_MODULE_TAGS := optional |
| 483 | LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS) |
Dees Troy | b47f28b | 2014-12-11 17:20:59 +0000 | [diff] [blame] | 484 | ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18)) |
| 485 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS) |
| 486 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 487 | include $(BUILD_PHONY_PACKAGE) |
| 488 | RECOVERY_BUSYBOX_SYMLINKS := |
| 489 | endif # !TW_USE_TOOLBOX |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 490 | |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 491 | # All the APIs for testing |
| 492 | include $(CLEAR_VARS) |
| 493 | LOCAL_MODULE := libverifier |
| 494 | LOCAL_MODULE_TAGS := tests |
| 495 | LOCAL_SRC_FILES := \ |
| 496 | asn1_decoder.cpp |
| 497 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 498 | |
| 499 | include $(CLEAR_VARS) |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 500 | LOCAL_SRC_FILES := fuse_sideload.c |
| 501 | |
| 502 | LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter |
| 503 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 504 | LOCAL_MODULE_TAGS := optional |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 505 | LOCAL_MODULE := libfusesideload |
Ethan Yonker | 1702eb4 | 2014-11-06 09:16:16 -0600 | [diff] [blame] | 506 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
Ethan Yonker | 560e65f | 2014-11-17 11:37:00 -0600 | [diff] [blame] | 507 | LOCAL_SHARED_LIBRARIES := libcutils libc libmincrypttwrp |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 508 | include $(BUILD_SHARED_LIBRARY) |
| 509 | |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 510 | include $(CLEAR_VARS) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 511 | LOCAL_MODULE := verifier_test |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 512 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 513 | LOCAL_MODULE_TAGS := tests |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 514 | |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 515 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 516 | |
Doug Zongker | 9e805d6 | 2013-09-04 13:44:38 -0700 | [diff] [blame] | 517 | LOCAL_CFLAGS += -DNO_RECOVERY_MOUNT |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 518 | LOCAL_CFLAGS += -Wno-unused-parameter |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 519 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 520 | LOCAL_SRC_FILES := \ |
| 521 | verifier_test.cpp \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 522 | asn1_decoder.cpp \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 523 | verifier.cpp \ |
| 524 | ui.cpp |
| 525 | LOCAL_STATIC_LIBRARIES := \ |
Dees Troy | d63c764 | 2013-11-03 13:03:55 +0000 | [diff] [blame] | 526 | libmincrypttwrp \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 527 | libminui \ |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 528 | libminzip \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 529 | libcutils \ |
| 530 | libstdc++ \ |
| 531 | libc |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 532 | include $(BUILD_EXECUTABLE) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 533 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 534 | include $(CLEAR_VARS) |
| 535 | |
| 536 | LOCAL_MODULE := libaosprecovery |
Matt Mower | db22044 | 2014-10-31 22:43:59 -0500 | [diff] [blame] | 537 | LOCAL_MODULE_TAGS := eng optional |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 538 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 539 | LOCAL_SRC_FILES := adb_install.cpp asn1_decoder.cpp bootloader.cpp legacy_property_service.c verifier.cpp set_metadata.c tw_atomic.cpp |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 540 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libmincrypttwrp libselinux |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 541 | |
Matt Mower | fb60a94 | 2014-07-08 22:25:38 -0500 | [diff] [blame] | 542 | ifneq ($(BOARD_RECOVERY_BLDRMSG_OFFSET),) |
| 543 | LOCAL_CFLAGS += -DBOARD_RECOVERY_BLDRMSG_OFFSET=$(BOARD_RECOVERY_BLDRMSG_OFFSET) |
| 544 | endif |
| 545 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 546 | include $(BUILD_SHARED_LIBRARY) |
| 547 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 548 | commands_recovery_local_path := $(LOCAL_PATH) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 549 | include $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 550 | $(LOCAL_PATH)/tools/Android.mk \ |
| 551 | $(LOCAL_PATH)/edify/Android.mk \ |
| 552 | $(LOCAL_PATH)/updater/Android.mk \ |
| 553 | $(LOCAL_PATH)/applypatch/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 554 | |
Matt Mower | f746dbb | 2015-05-13 22:56:31 -0500 | [diff] [blame] | 555 | ifeq ($(wildcard system/core/uncrypt/Android.mk),) |
| 556 | include $(commands_recovery_local_path)/uncrypt/Android.mk |
| 557 | endif |
| 558 | |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 559 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 560 | include $(commands_recovery_local_path)/minadbd/Android.mk \ |
| 561 | $(commands_recovery_local_path)/minui/Android.mk |
| 562 | else |
| 563 | TARGET_GLOBAL_CFLAGS += -DTW_USE_OLD_MINUI_H |
| 564 | include $(commands_recovery_local_path)/minadbd.old/Android.mk \ |
| 565 | $(commands_recovery_local_path)/minui.old/Android.mk |
| 566 | endif |
| 567 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 568 | #includes for TWRP |
Dees_Troy | 930bf01 | 2013-08-10 22:19:03 +0000 | [diff] [blame] | 569 | include $(commands_recovery_local_path)/injecttwrp/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 570 | $(commands_recovery_local_path)/htcdumlock/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 571 | $(commands_recovery_local_path)/gui/Android.mk \ |
| 572 | $(commands_recovery_local_path)/mmcutils/Android.mk \ |
| 573 | $(commands_recovery_local_path)/bmlutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 574 | $(commands_recovery_local_path)/prebuilt/Android.mk \ |
| 575 | $(commands_recovery_local_path)/mtdutils/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 576 | $(commands_recovery_local_path)/flashutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 577 | $(commands_recovery_local_path)/pigz/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 578 | $(commands_recovery_local_path)/libtar/Android.mk \ |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 579 | $(commands_recovery_local_path)/libcrecovery/Android.mk \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 580 | $(commands_recovery_local_path)/libblkid/Android.mk \ |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 581 | $(commands_recovery_local_path)/minuitwrp/Android.mk \ |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 582 | $(commands_recovery_local_path)/openaes/Android.mk \ |
Dees Troy | bb4c0cb | 2013-11-02 20:25:14 +0000 | [diff] [blame] | 583 | $(commands_recovery_local_path)/toolbox/Android.mk \ |
Ethan Yonker | 5038197 | 2014-02-11 11:44:06 -0600 | [diff] [blame] | 584 | $(commands_recovery_local_path)/libmincrypt/Android.mk \ |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 585 | $(commands_recovery_local_path)/twrpTarMain/Android.mk \ |
Ethan Yonker | 738be7a | 2014-12-10 11:40:43 -0600 | [diff] [blame] | 586 | $(commands_recovery_local_path)/mtp/Android.mk \ |
Ethan Yonker | 2d11d49 | 2014-12-12 11:43:21 -0600 | [diff] [blame] | 587 | $(commands_recovery_local_path)/minzip/Android.mk \ |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 588 | $(commands_recovery_local_path)/dosfstools/Android.mk \ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 589 | $(commands_recovery_local_path)/etc/Android.mk \ |
| 590 | $(commands_recovery_local_path)/toybox/Android.mk \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 591 | $(commands_recovery_local_path)/simg2img/Android.mk \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 592 | $(commands_recovery_local_path)/adbbu/Android.mk \ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 593 | $(commands_recovery_local_path)/libpixelflinger/Android.mk |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 594 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 595 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 596 | include $(commands_recovery_local_path)/crypto/lollipop/Android.mk |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 597 | include $(commands_recovery_local_path)/crypto/scrypt/Android.mk |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 598 | include $(commands_recovery_local_path)/gpt/Android.mk |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 599 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 600 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 601 | TW_NO_EXFAT := true |
| 602 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 603 | ifneq ($(TW_NO_EXFAT), true) |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 604 | include $(commands_recovery_local_path)/exfat/mkfs/Android.mk \ |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 605 | $(commands_recovery_local_path)/exfat/fsck/Android.mk \ |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 606 | $(commands_recovery_local_path)/fuse/Android.mk \ |
| 607 | $(commands_recovery_local_path)/exfat/libexfat/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 608 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 609 | include $(commands_recovery_local_path)/exfat/fuse/Android.mk |
| 610 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 611 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 612 | ifneq ($(TW_OEM_BUILD),true) |
| 613 | include $(commands_recovery_local_path)/orscmd/Android.mk |
| 614 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 615 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 616 | # FB2PNG |
| 617 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 618 | include $(commands_recovery_local_path)/fb2png/Android.mk |
| 619 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 620 | |
| 621 | commands_recovery_local_path := |
| 622 | |
| 623 | endif |