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 |
| 20 | endif |
| 21 | else |
| 22 | ifeq ($(LOCAL_PATH),bootable/recovery) |
| 23 | PROJECT_PATH_AGREES := true |
| 24 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 25 | endif |
| 26 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 27 | ifeq ($(PROJECT_PATH_AGREES),true) |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 28 | |
Motorhead1991 | 75b6f66 | 2014-06-12 15:58:33 -0700 | [diff] [blame] | 29 | include $(CLEAR_VARS) |
| 30 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 31 | TARGET_RECOVERY_GUI := true |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 32 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 33 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 34 | twrp.cpp \ |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 35 | fixPermissions.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 36 | twrpTar.cpp \ |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 37 | twrpDU.cpp \ |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 38 | twrpDigest.cpp \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 39 | find_file.cpp \ |
| 40 | infomanager.cpp |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 42 | LOCAL_SRC_FILES += \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 43 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 44 | partition.cpp \ |
| 45 | partitionmanager.cpp \ |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 46 | twinstall.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 47 | twrp-functions.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 48 | openrecoveryscript.cpp \ |
| 49 | tarWrite.c |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 50 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 51 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 52 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 53 | endif |
| 54 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 55 | LOCAL_MODULE := recovery |
| 56 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 57 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 58 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 59 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 60 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 61 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
| 62 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 63 | #LOCAL_STATIC_LIBRARIES := \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 64 | # libext4_utils_static \ |
| 65 | # libsparse_static \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 66 | # libminzip \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 67 | # libz \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 68 | # libmtdutils \ |
| 69 | # libmincrypt \ |
| 70 | # libminadbd \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 71 | # libminui \ |
| 72 | # libpixelflinger_static \ |
| 73 | # libpng \ |
| 74 | # libfs_mgr \ |
| 75 | # libcutils \ |
| 76 | # liblog \ |
| 77 | # libselinux \ |
| 78 | # libstdc++ \ |
| 79 | # libm \ |
| 80 | # libc |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 81 | |
| 82 | LOCAL_C_INCLUDES += bionic external/stlport/stlport |
| 83 | |
| 84 | LOCAL_STATIC_LIBRARIES := |
| 85 | LOCAL_SHARED_LIBRARIES := |
| 86 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 87 | LOCAL_STATIC_LIBRARIES += libcrecovery libguitwrp |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 88 | LOCAL_SHARED_LIBRARIES += libz libc libstlport libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libminzip libaosprecovery libcorkscrew |
| 89 | LOCAL_SHARED_LIBRARIES += libgccdemangle |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 90 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 91 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 92 | LOCAL_SHARED_LIBRARIES += libsparse |
| 93 | endif |
| 94 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 95 | ifeq ($(TW_OEM_BUILD),true) |
| 96 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 97 | BOARD_HAS_NO_REAL_SDCARD := true |
| 98 | TW_USE_TOOLBOX := true |
| 99 | TW_EXCLUDE_SUPERSU := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 100 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 101 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 102 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 103 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 104 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 105 | LOCAL_SHARED_LIBRARIES += libext4_utils |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 106 | endif |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 107 | ifneq ($(wildcard external/libselinux/Android.mk),) |
| 108 | TWHAVE_SELINUX := true |
| 109 | endif |
| 110 | ifeq ($(TWHAVE_SELINUX), true) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 111 | #LOCAL_C_INCLUDES += external/libselinux/include |
| 112 | #LOCAL_STATIC_LIBRARIES += libselinux |
| 113 | #LOCAL_CFLAGS += -DHAVE_SELINUX -g |
Stephen Smalley | 1a11449 | 2012-01-13 07:59:51 -0500 | [diff] [blame] | 114 | endif # HAVE_SELINUX |
Dees Troy | 4bf3b0d | 2013-09-11 19:12:49 +0000 | [diff] [blame] | 115 | ifeq ($(TWHAVE_SELINUX), true) |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 116 | LOCAL_C_INCLUDES += external/libselinux/include |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 117 | LOCAL_SHARED_LIBRARIES += libselinux |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 118 | LOCAL_CFLAGS += -DHAVE_SELINUX -g |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 119 | ifneq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 120 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 121 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 122 | LOCAL_SHARED_LIBRARIES += libext4_utils |
| 123 | endif |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 124 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 125 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 126 | # This binary is in the recovery ramdisk, which is otherwise a copy of root. |
| 127 | # It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses |
| 128 | # a (redundant) copy of the binary in /system/bin for user builds. |
| 129 | # TODO: Build the ramdisk image in a more principled way. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 130 | LOCAL_MODULE_TAGS := eng |
| 131 | |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 132 | #ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 133 | LOCAL_SRC_FILES += default_device.cpp |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 134 | #else |
| 135 | # LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 136 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 137 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 138 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 139 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 140 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 141 | ifeq ($(TW_EXCLUDE_MTP),) |
| 142 | LOCAL_SHARED_LIBRARIES += libtwrpmtp |
| 143 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 144 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 145 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 146 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 147 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 148 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 149 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 150 | endif |
| 151 | ifneq ($(SP1_NAME),) |
| 152 | LOCAL_CFLAGS += -DSP1_NAME=$(SP1_NAME) -DSP1_BACKUP_METHOD=$(SP1_BACKUP_METHOD) -DSP1_MOUNTABLE=$(SP1_MOUNTABLE) |
| 153 | endif |
| 154 | ifneq ($(SP1_DISPLAY_NAME),) |
| 155 | LOCAL_CFLAGS += -DSP1_DISPLAY_NAME=$(SP1_DISPLAY_NAME) |
| 156 | endif |
| 157 | ifneq ($(SP2_NAME),) |
| 158 | LOCAL_CFLAGS += -DSP2_NAME=$(SP2_NAME) -DSP2_BACKUP_METHOD=$(SP2_BACKUP_METHOD) -DSP2_MOUNTABLE=$(SP2_MOUNTABLE) |
| 159 | endif |
| 160 | ifneq ($(SP2_DISPLAY_NAME),) |
| 161 | LOCAL_CFLAGS += -DSP2_DISPLAY_NAME=$(SP2_DISPLAY_NAME) |
| 162 | endif |
| 163 | ifneq ($(SP3_NAME),) |
| 164 | LOCAL_CFLAGS += -DSP3_NAME=$(SP3_NAME) -DSP3_BACKUP_METHOD=$(SP3_BACKUP_METHOD) -DSP3_MOUNTABLE=$(SP3_MOUNTABLE) |
| 165 | endif |
| 166 | ifneq ($(SP3_DISPLAY_NAME),) |
| 167 | LOCAL_CFLAGS += -DSP3_DISPLAY_NAME=$(SP3_DISPLAY_NAME) |
| 168 | endif |
| 169 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 170 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 171 | endif |
| 172 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 173 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 174 | endif |
| 175 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 176 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 177 | endif |
| 178 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 179 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 180 | endif |
| 181 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 182 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 183 | endif |
| 184 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 185 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 186 | endif |
| 187 | ifeq ($(TW_HAS_NO_RECOVERY_PARTITION), true) |
| 188 | LOCAL_CFLAGS += -DTW_HAS_NO_RECOVERY_PARTITION |
| 189 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 190 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 191 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 192 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 193 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 194 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 195 | endif |
| 196 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 197 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 198 | endif |
| 199 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 200 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 201 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 202 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 203 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 204 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 205 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 206 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 207 | endif |
| 208 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 209 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 210 | endif |
| 211 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 212 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 213 | endif |
| 214 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 215 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 216 | endif |
| 217 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 218 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 219 | endif |
| 220 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 221 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 222 | endif |
| 223 | ifeq ($(TW_DEFAULT_EXTERNAL_STORAGE), true) |
| 224 | LOCAL_CFLAGS += -DTW_DEFAULT_EXTERNAL_STORAGE |
| 225 | endif |
| 226 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 227 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 228 | endif |
| 229 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 230 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 231 | endif |
| 232 | #ifeq ($(TW_FLASH_FROM_STORAGE), true) Making this the default behavior |
| 233 | LOCAL_CFLAGS += -DTW_FLASH_FROM_STORAGE |
| 234 | #endif |
| 235 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 236 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 237 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 238 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 239 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 240 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 241 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 242 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 243 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 244 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 245 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 246 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 247 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 248 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 249 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 250 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
| 251 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
| 252 | LOCAL_CFLAGS += -DCRYPTO_FS_TYPE=\"$(TW_CRYPTO_FS_TYPE)\" |
| 253 | LOCAL_CFLAGS += -DCRYPTO_REAL_BLKDEV=\"$(TW_CRYPTO_REAL_BLKDEV)\" |
| 254 | LOCAL_CFLAGS += -DCRYPTO_MNT_POINT=\"$(TW_CRYPTO_MNT_POINT)\" |
| 255 | LOCAL_CFLAGS += -DCRYPTO_FS_OPTIONS=\"$(TW_CRYPTO_FS_OPTIONS)\" |
| 256 | LOCAL_CFLAGS += -DCRYPTO_FS_FLAGS=\"$(TW_CRYPTO_FS_FLAGS)\" |
| 257 | LOCAL_CFLAGS += -DCRYPTO_KEY_LOC=\"$(TW_CRYPTO_KEY_LOC)\" |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 258 | ifeq ($(TW_INCLUDE_CRYPTO_SAMSUNG), true) |
| 259 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO_SAMSUNG=\"$(TW_INCLUDE_CRYPTO_SAMSUNG)\" |
| 260 | ifdef TW_CRYPTO_SD_REAL_BLKDEV |
| 261 | LOCAL_CFLAGS += -DCRYPTO_SD_REAL_BLKDEV=\"$(TW_CRYPTO_SD_REAL_BLKDEV)\" |
| 262 | LOCAL_CFLAGS += -DCRYPTO_SD_FS_TYPE=\"$(TW_CRYPTO_SD_FS_TYPE)\" |
| 263 | endif |
| 264 | #LOCAL_LDFLAGS += -L$(TARGET_OUT_SHARED_LIBRARIES) -lsec_km |
| 265 | LOCAL_LDFLAGS += -ldl |
| 266 | LOCAL_STATIC_LIBRARIES += libcrypt_samsung |
| 267 | endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 268 | LOCAL_SHARED_LIBRARIES += libcryptfsics |
| 269 | #LOCAL_SRC_FILES += crypto/ics/cryptfs.c |
| 270 | #LOCAL_C_INCLUDES += system/extras/ext4_utils external/openssl/include |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 271 | endif |
| 272 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
| 273 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
| 274 | LOCAL_CFLAGS += -DTW_INCLUDE_JB_CRYPTO |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 275 | LOCAL_SHARED_LIBRARIES += libcryptfsjb |
| 276 | #LOCAL_SRC_FILES += crypto/jb/cryptfs.c |
| 277 | #LOCAL_C_INCLUDES += system/extras/ext4_utils external/openssl/include |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 278 | endif |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 279 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 280 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 281 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 282 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 283 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 284 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 285 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 286 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 287 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 288 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 289 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 290 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 291 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 292 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 293 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 294 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 295 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 296 | endif |
| 297 | ifneq ($(TW_NO_CPU_TEMP),) |
| 298 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP=$(TW_NO_CPU_TEMP) |
| 299 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 300 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 301 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 302 | else |
| 303 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 304 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 305 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
| 306 | ifeq ($(TARGET_CPU_VARIANT),krait) |
| 307 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 308 | endif |
| 309 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 310 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 311 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 312 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 313 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 314 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 315 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 316 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 317 | endif |
Sergey 'Jin' Bostandzhyan | 80a90ed | 2013-01-04 02:29:03 +0100 | [diff] [blame] | 318 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 319 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 320 | |
| 321 | LOCAL_ADDITIONAL_DEPENDENCIES := \ |
| 322 | busybox_symlinks \ |
| 323 | dosfsck \ |
| 324 | dosfslabel \ |
| 325 | dump_image \ |
| 326 | erase_image \ |
| 327 | flash_image \ |
| 328 | fix_permissions.sh \ |
| 329 | fsck_msdos_symlink \ |
| 330 | mkdosfs \ |
| 331 | mke2fs.conf \ |
| 332 | mkexfatfs \ |
| 333 | pigz \ |
| 334 | teamwin \ |
| 335 | toolbox_symlinks \ |
| 336 | twrp \ |
| 337 | unpigz_symlink \ |
| 338 | updater |
| 339 | |
| 340 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
| 341 | LOCAL_ADDITIONAL_DEPENDENCIES += parted |
| 342 | endif |
| 343 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 344 | LOCAL_ADDITIONAL_DEPENDENCIES += openaes ../openaes/LICENSE |
| 345 | endif |
| 346 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
| 347 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 348 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 349 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 350 | endif |
| 351 | ifneq ($(TW_EXCLUDE_SUPERSU), true) |
| 352 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 353 | su install-recovery.sh 99SuperSUDaemon Superuser.apk |
| 354 | endif |
| 355 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 356 | LOCAL_ADDITIONAL_DEPENDENCIES += exfat-fuse |
| 357 | endif |
| 358 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
| 359 | LOCAL_ADDITIONAL_DEPENDENCIES += cryptfs cryptsettings |
| 360 | endif |
| 361 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
| 362 | LOCAL_ADDITIONAL_DEPENDENCIES += getfooter |
| 363 | endif |
| 364 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 365 | LOCAL_ADDITIONAL_DEPENDENCIES += fb2png |
| 366 | endif |
| 367 | ifneq ($(TW_OEM_BUILD),true) |
| 368 | LOCAL_ADDITIONAL_DEPENDENCIES += orscmd |
| 369 | endif |
| 370 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
| 371 | LOCAL_ADDITIONAL_DEPENDENCIES += bml_over_mtd |
| 372 | endif |
| 373 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 374 | LOCAL_ADDITIONAL_DEPENDENCIES += injecttwrp |
| 375 | endif |
| 376 | # Allow devices to specify device-specific recovery dependencies |
| 377 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
| 378 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_RECOVERY_DEVICE_MODULES) |
| 379 | endif |
| 380 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 381 | include $(BUILD_EXECUTABLE) |
| 382 | |
Ethan Yonker | 5c93369 | 2014-04-04 11:26:32 -0500 | [diff] [blame] | 383 | ifneq ($(TW_USE_TOOLBOX), true) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 384 | include $(CLEAR_VARS) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 385 | # Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead |
| 386 | BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links) |
| 387 | exclude := tune2fs mke2fs mkdosfs gzip gunzip |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 388 | |
| 389 | # If busybox does not have restorecon, assume it does not have SELinux support. |
| 390 | # 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] | 391 | ifeq ($(TWHAVE_SELINUX), true) |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 392 | ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),) |
| 393 | exclude += ls |
| 394 | endif |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 395 | endif |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 396 | |
| 397 | RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS))) |
| 398 | RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS)) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 399 | $(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox |
| 400 | $(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE) |
| 401 | @echo "Symlink: $@ -> $(BUSYBOX_BINARY)" |
| 402 | @mkdir -p $(dir $@) |
| 403 | @rm -rf $@ |
| 404 | $(hide) ln -sf $(BUSYBOX_BINARY) $@ |
| 405 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 406 | include $(CLEAR_VARS) |
| 407 | LOCAL_MODULE := busybox_symlinks |
| 408 | LOCAL_MODULE_TAGS := optional |
| 409 | LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS) |
| 410 | include $(BUILD_PHONY_PACKAGE) |
| 411 | RECOVERY_BUSYBOX_SYMLINKS := |
| 412 | endif # !TW_USE_TOOLBOX |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 413 | |
| 414 | include $(CLEAR_VARS) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 415 | LOCAL_MODULE := verifier_test |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 416 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 417 | LOCAL_MODULE_TAGS := tests |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 418 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 419 | LOCAL_SRC_FILES := \ |
| 420 | verifier_test.cpp \ |
| 421 | verifier.cpp \ |
| 422 | ui.cpp |
| 423 | LOCAL_STATIC_LIBRARIES := \ |
Dees Troy | d63c764 | 2013-11-03 13:03:55 +0000 | [diff] [blame] | 424 | libmincrypttwrp \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 425 | libminui \ |
| 426 | libcutils \ |
| 427 | libstdc++ \ |
| 428 | libc |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 429 | include $(BUILD_EXECUTABLE) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 430 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 431 | include $(CLEAR_VARS) |
| 432 | |
| 433 | LOCAL_MODULE := libaosprecovery |
| 434 | LOCAL_MODULE_TAGS := eng |
| 435 | LOCAL_MODULES_TAGS = optional |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 436 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 437 | LOCAL_SRC_FILES = adb_install.cpp bootloader.cpp verifier.cpp mtdutils/mtdutils.c legacy_property_service.c |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 438 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils |
Dees Troy | bb4c0cb | 2013-11-02 20:25:14 +0000 | [diff] [blame] | 439 | LOCAL_STATIC_LIBRARIES += libmincrypttwrp |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 440 | |
Matt Mower | fb60a94 | 2014-07-08 22:25:38 -0500 | [diff] [blame] | 441 | ifneq ($(BOARD_RECOVERY_BLDRMSG_OFFSET),) |
| 442 | LOCAL_CFLAGS += -DBOARD_RECOVERY_BLDRMSG_OFFSET=$(BOARD_RECOVERY_BLDRMSG_OFFSET) |
| 443 | endif |
| 444 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 445 | include $(BUILD_SHARED_LIBRARY) |
| 446 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 447 | commands_recovery_local_path := $(LOCAL_PATH) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 448 | include $(LOCAL_PATH)/minui/Android.mk \ |
| 449 | $(LOCAL_PATH)/minelf/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 450 | $(LOCAL_PATH)/minadbd/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 451 | $(LOCAL_PATH)/tools/Android.mk \ |
| 452 | $(LOCAL_PATH)/edify/Android.mk \ |
| 453 | $(LOCAL_PATH)/updater/Android.mk \ |
| 454 | $(LOCAL_PATH)/applypatch/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 455 | |
| 456 | #includes for TWRP |
Dees_Troy | 930bf01 | 2013-08-10 22:19:03 +0000 | [diff] [blame] | 457 | include $(commands_recovery_local_path)/injecttwrp/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 458 | $(commands_recovery_local_path)/htcdumlock/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 459 | $(commands_recovery_local_path)/gui/Android.mk \ |
| 460 | $(commands_recovery_local_path)/mmcutils/Android.mk \ |
| 461 | $(commands_recovery_local_path)/bmlutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 462 | $(commands_recovery_local_path)/prebuilt/Android.mk \ |
| 463 | $(commands_recovery_local_path)/mtdutils/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 464 | $(commands_recovery_local_path)/flashutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 465 | $(commands_recovery_local_path)/pigz/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 466 | $(commands_recovery_local_path)/dosfstools/Android.mk \ |
| 467 | $(commands_recovery_local_path)/libtar/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 468 | $(commands_recovery_local_path)/crypto/cryptsettings/Android.mk \ |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 469 | $(commands_recovery_local_path)/crypto/cryptfs/Android.mk \ |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 470 | $(commands_recovery_local_path)/libcrecovery/Android.mk \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 471 | $(commands_recovery_local_path)/libblkid/Android.mk \ |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 472 | $(commands_recovery_local_path)/minuitwrp/Android.mk \ |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 473 | $(commands_recovery_local_path)/openaes/Android.mk \ |
Dees Troy | bb4c0cb | 2013-11-02 20:25:14 +0000 | [diff] [blame] | 474 | $(commands_recovery_local_path)/toolbox/Android.mk \ |
Ethan Yonker | 5038197 | 2014-02-11 11:44:06 -0600 | [diff] [blame] | 475 | $(commands_recovery_local_path)/libmincrypt/Android.mk \ |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 476 | $(commands_recovery_local_path)/twrpTarMain/Android.mk \ |
| 477 | $(commands_recovery_local_path)/mtp/Android.mk |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 478 | |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 479 | ifeq ($(TW_INCLUDE_CRYPTO_SAMSUNG), true) |
| 480 | include $(commands_recovery_local_path)/crypto/libcrypt_samsung/Android.mk |
| 481 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 482 | |
| 483 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 484 | include $(commands_recovery_local_path)/crypto/jb/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 485 | include $(commands_recovery_local_path)/crypto/fs_mgr/Android.mk |
Dees Troy | 4dff2e6 | 2013-11-10 04:11:43 +0000 | [diff] [blame] | 486 | include $(commands_recovery_local_path)/crypto/logwrapper/Android.mk |
| 487 | include $(commands_recovery_local_path)/crypto/scrypt/Android.mk |
Dees Troy | 8931007 | 2013-11-11 15:14:14 +0000 | [diff] [blame] | 488 | include $(commands_recovery_local_path)/crypto/crypttools/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 489 | endif |
Ethan Yonker | 3d2baac | 2014-01-27 22:03:00 -0600 | [diff] [blame] | 490 | ifeq ($(TWHAVE_SELINUX), true) |
Dees Troy | b7ae098 | 2013-09-10 20:47:35 +0000 | [diff] [blame] | 491 | include $(commands_recovery_local_path)/minzip/Android.mk |
| 492 | else |
| 493 | include $(commands_recovery_local_path)/minzipold/Android.mk |
| 494 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 495 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 496 | TW_NO_EXFAT := true |
| 497 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 498 | ifneq ($(TW_NO_EXFAT), true) |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 499 | include $(commands_recovery_local_path)/exfat/mkfs/Android.mk \ |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 500 | $(commands_recovery_local_path)/fuse/Android.mk \ |
| 501 | $(commands_recovery_local_path)/exfat/libexfat/Android.mk |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 502 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 503 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 504 | include $(commands_recovery_local_path)/exfat/exfat-fuse/Android.mk |
| 505 | endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 506 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
| 507 | include $(commands_recovery_local_path)/crypto/ics/Android.mk |
| 508 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 509 | ifneq ($(TW_OEM_BUILD),true) |
| 510 | include $(commands_recovery_local_path)/orscmd/Android.mk |
| 511 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 512 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 513 | # FB2PNG |
| 514 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 515 | include $(commands_recovery_local_path)/fb2png/Android.mk |
| 516 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 517 | |
| 518 | commands_recovery_local_path := |
| 519 | |
| 520 | endif |