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 | |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 43 | ifneq ($(TW_DEVICE_VERSION),) |
| 44 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"' |
| 45 | else |
| 46 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"' |
| 47 | endif |
| 48 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 50 | twrp.cpp \ |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 51 | fixContexts.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 52 | twrpTar.cpp \ |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 53 | exclude.cpp \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 54 | find_file.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 55 | infomanager.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 56 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 57 | partition.cpp \ |
| 58 | partitionmanager.cpp \ |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 59 | progresstracking.cpp \ |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 60 | twinstall.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 61 | twrp-functions.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 62 | twrpDigestDriver.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 63 | openrecoveryscript.cpp \ |
| 64 | tarWrite.c |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 65 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 66 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 67 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 68 | endif |
| 69 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | LOCAL_MODULE := recovery |
| 71 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 72 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 73 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 74 | #ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 75 | #ifeq ($(HOST_OS),linux) |
| 76 | #LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 77 | #endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 78 | #endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 79 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 80 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 81 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 82 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 83 | LOCAL_CFLAGS += -Wno-unused-parameter |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 84 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 85 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 86 | #LOCAL_STATIC_LIBRARIES := \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 87 | # libext4_utils_static \ |
| 88 | # libsparse_static \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 89 | # libminzip \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 90 | # libz \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 91 | # libmtdutils \ |
| 92 | # libmincrypt \ |
| 93 | # libminadbd \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 94 | # libminui \ |
| 95 | # libpixelflinger_static \ |
| 96 | # libpng \ |
| 97 | # libfs_mgr \ |
| 98 | # libcutils \ |
| 99 | # liblog \ |
| 100 | # libselinux \ |
| 101 | # libstdc++ \ |
| 102 | # libm \ |
| 103 | # libc |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 104 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 105 | LOCAL_C_INCLUDES += \ |
| 106 | system/vold \ |
| 107 | system/extras/ext4_utils \ |
| 108 | system/core/adb \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 109 | system/core/libsparse \ |
| 110 | external/zlib |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 111 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 112 | LOCAL_C_INCLUDES += bionic |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 113 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 114 | LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include |
| 115 | else |
| 116 | LOCAL_C_INCLUDES += external/boringssl/include |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 117 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 118 | |
| 119 | LOCAL_STATIC_LIBRARIES := |
| 120 | LOCAL_SHARED_LIBRARIES := |
| 121 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 122 | LOCAL_STATIC_LIBRARIES += libguitwrp |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 123 | LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libminzip libtwadbbu libbootloader_message |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 124 | LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 125 | |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 126 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 127 | LOCAL_SHARED_LIBRARIES += libstlport |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 128 | LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 129 | endif |
| 130 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 131 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 132 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
| 133 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 134 | else |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 135 | LOCAL_SHARED_LIBRARIES += libc++ libcrypto |
| 136 | endif |
| 137 | |
| 138 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 139 | LOCAL_SHARED_LIBRARIES += libbase |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 140 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 141 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 142 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 143 | LOCAL_SHARED_LIBRARIES += libsparse |
| 144 | endif |
| 145 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 146 | ifeq ($(TW_OEM_BUILD),true) |
| 147 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 148 | BOARD_HAS_NO_REAL_SDCARD := true |
| 149 | TW_USE_TOOLBOX := true |
| 150 | TW_EXCLUDE_SUPERSU := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 151 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 152 | endif |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 153 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 154 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 155 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 156 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 157 | LOCAL_SHARED_LIBRARIES += libext4_utils |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 158 | ifneq ($(wildcard external/lz4/Android.mk),) |
Humberto Borba | 443af21 | 2016-08-30 18:06:30 -0300 | [diff] [blame] | 159 | #LOCAL_STATIC_LIBRARIES += liblz4 |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 160 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 161 | endif |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 162 | LOCAL_C_INCLUDES += external/libselinux/include |
| 163 | LOCAL_SHARED_LIBRARIES += libselinux |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 164 | ifneq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 165 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 166 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 167 | LOCAL_SHARED_LIBRARIES += libext4_utils |
| 168 | ifneq ($(wildcard external/lz4/Android.mk),) |
| 169 | LOCAL_STATIC_LIBRARIES += liblz4 |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 170 | endif |
Dees_Troy | f2280ff | 2013-08-06 18:01:12 +0000 | [diff] [blame] | 171 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 172 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 173 | ifeq ($(AB_OTA_UPDATER),true) |
| 174 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 175 | LOCAL_SHARED_LIBRARIES += libhardware |
| 176 | LOCAL_ADDITIONAL_DEPENDENCIES += libhardware |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 177 | endif |
| 178 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 179 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 180 | |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 181 | #ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 182 | # LOCAL_SRC_FILES += default_device.cpp |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 183 | #else |
| 184 | # LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 185 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 186 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 187 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 188 | |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 189 | tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null) |
| 190 | ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1) |
| 191 | tw_git_revision := $(tw_git_revision)-dirty |
| 192 | endif |
| 193 | LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"' |
| 194 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 195 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 196 | ifeq ($(TW_EXCLUDE_MTP),) |
| 197 | LOCAL_SHARED_LIBRARIES += libtwrpmtp |
| 198 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 199 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 200 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 201 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 202 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 203 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 204 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 205 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 206 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 207 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 208 | endif |
| 209 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 210 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 211 | endif |
| 212 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 213 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 214 | endif |
| 215 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 216 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 217 | endif |
| 218 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 219 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 220 | endif |
| 221 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 222 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 223 | endif |
| 224 | ifeq ($(TW_HAS_NO_RECOVERY_PARTITION), true) |
| 225 | LOCAL_CFLAGS += -DTW_HAS_NO_RECOVERY_PARTITION |
| 226 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 227 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 228 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 229 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 230 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 231 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 232 | endif |
| 233 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 234 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 235 | endif |
| 236 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 237 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 238 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 239 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 240 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 241 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 242 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 243 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 244 | endif |
| 245 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 246 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 247 | endif |
| 248 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 249 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 250 | endif |
| 251 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 252 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 253 | endif |
| 254 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 255 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 256 | endif |
| 257 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 258 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 259 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 260 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 261 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 262 | endif |
| 263 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 264 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 265 | endif |
| 266 | #ifeq ($(TW_FLASH_FROM_STORAGE), true) Making this the default behavior |
| 267 | LOCAL_CFLAGS += -DTW_FLASH_FROM_STORAGE |
| 268 | #endif |
| 269 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 270 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 271 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 272 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 273 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 274 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 275 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 276 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 277 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 278 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 279 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 280 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 281 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 282 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 283 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 284 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 285 | TW_INCLUDE_CRYPTO := true |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 286 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 287 | ifeq ($(TW_INCLUDE_L_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 288 | TW_INCLUDE_CRYPTO := true |
| 289 | endif |
| 290 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 291 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 292 | LOCAL_SHARED_LIBRARIES += libcryptfslollipop libgpt_twrp |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 293 | LOCAL_C_INCLUDES += external/boringssl/src/include |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 294 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 295 | TW_INCLUDE_CRYPTO_FBE := true |
| 296 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE |
| 297 | LOCAL_SHARED_LIBRARIES += libe4crypt |
| 298 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 299 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 300 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
| 301 | LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD |
| 302 | LOCAL_STATIC_LIBRARIES += libvolddecrypt |
| 303 | endif |
| 304 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 305 | endif |
D. Andrei Măceș | b29a5e2 | 2016-12-22 06:19:44 -0500 | [diff] [blame] | 306 | WITH_CRYPTO_UTILS := \ |
| 307 | $(if $(wildcard system/core/libcrypto_utils/Android.mk),true) |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 308 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 309 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 310 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 311 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 312 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 313 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 314 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 315 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 316 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 317 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 318 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 319 | endif |
Greg Wallace | 36ade45 | 2015-11-08 13:54:25 -0500 | [diff] [blame] | 320 | ifneq ($(TW_DEFAULT_BRIGHTNESS),) |
| 321 | LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS) |
| 322 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 323 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 324 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 325 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 326 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 327 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 328 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 329 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 330 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 331 | else |
| 332 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 333 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 334 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
| 335 | ifeq ($(TARGET_CPU_VARIANT),krait) |
| 336 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 337 | endif |
| 338 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 339 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 340 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 341 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 342 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 343 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 344 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 345 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 346 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 347 | ifneq ($(TARGET_RECOVERY_INITRC),) |
| 348 | TW_EXCLUDE_DEFAULT_USB_INIT := true |
| 349 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 350 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 351 | LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD |
| 352 | endif |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 353 | ifneq ($(TW_DEFAULT_LANGUAGE),) |
| 354 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE) |
| 355 | else |
| 356 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en |
| 357 | endif |
Sergey 'Jin' Bostandzhyan | 80a90ed | 2013-01-04 02:29:03 +0100 | [diff] [blame] | 358 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 359 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 360 | dump_image \ |
| 361 | erase_image \ |
| 362 | flash_image \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 363 | mke2fs.conf \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 364 | pigz \ |
| 365 | teamwin \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 366 | toolbox_symlinks \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 367 | twrp \ |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 368 | fsck.fat \ |
| 369 | fatlabel \ |
| 370 | mkfs.fat \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 371 | permissive.sh \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 372 | simg2img_twrp \ |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 373 | libbootloader_message \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 374 | init.recovery.service.rc |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 375 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 376 | ifneq ($(TARGET_ARCH), arm64) |
Ethan Yonker | 4f6a976 | 2015-03-09 13:58:54 -0500 | [diff] [blame] | 377 | ifneq ($(TARGET_ARCH), x86_64) |
| 378 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 379 | else |
| 380 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 381 | endif |
Ethan Yonker | 1902c79 | 2014-12-03 16:48:36 -0600 | [diff] [blame] | 382 | else |
| 383 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 384 | endif |
| 385 | ifneq ($(TW_USE_TOOLBOX), true) |
| 386 | LOCAL_ADDITIONAL_DEPENDENCIES += busybox_symlinks |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 387 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 388 | LOCAL_POST_INSTALL_CMD := \ |
| 389 | $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \ |
| 390 | ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh |
| 391 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 392 | else |
| 393 | ifneq ($(wildcard external/toybox/Android.mk),) |
| 394 | LOCAL_ADDITIONAL_DEPENDENCIES += toybox_symlinks |
| 395 | endif |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 396 | ifneq ($(wildcard external/zip/Android.mk),) |
| 397 | LOCAL_ADDITIONAL_DEPENDENCIES += zip |
| 398 | endif |
| 399 | ifneq ($(wildcard external/unzip/Android.mk),) |
| 400 | LOCAL_ADDITIONAL_DEPENDENCIES += unzip |
| 401 | endif |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 402 | endif |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 403 | |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 404 | ifneq ($(TW_NO_EXFAT), true) |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 405 | LOCAL_ADDITIONAL_DEPENDENCIES += mkexfatfs fsckexfat |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 406 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 407 | LOCAL_ADDITIONAL_DEPENDENCIES += exfat-fuse |
| 408 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 409 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 410 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 411 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 412 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk |
| 413 | else |
| 414 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk_static |
| 415 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 416 | endif |
| 417 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 418 | LOCAL_ADDITIONAL_DEPENDENCIES += openaes openaes_license |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 419 | endif |
| 420 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
| 421 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 422 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 423 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 424 | endif |
| 425 | ifneq ($(TW_EXCLUDE_SUPERSU), true) |
| 426 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
Ethan Yonker | b82422a | 2016-01-20 08:48:49 -0600 | [diff] [blame] | 427 | install-recovery.sh 99SuperSUDaemon Superuser.apk |
| 428 | ifeq ($(TARGET_ARCH), arm) |
| 429 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 430 | chattr.pie libsupol.so suarm supolicy |
| 431 | endif |
| 432 | ifeq ($(TARGET_ARCH), arm64) |
| 433 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 434 | libsupol.soarm64 suarm64 supolicyarm64 |
| 435 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 436 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 437 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 438 | LOCAL_ADDITIONAL_DEPENDENCIES += fb2png |
| 439 | endif |
| 440 | ifneq ($(TW_OEM_BUILD),true) |
| 441 | LOCAL_ADDITIONAL_DEPENDENCIES += orscmd |
| 442 | endif |
| 443 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
| 444 | LOCAL_ADDITIONAL_DEPENDENCIES += bml_over_mtd |
| 445 | endif |
| 446 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 447 | LOCAL_ADDITIONAL_DEPENDENCIES += injecttwrp |
| 448 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 449 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
| 450 | LOCAL_ADDITIONAL_DEPENDENCIES += init.recovery.usb.rc |
| 451 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 452 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 453 | LOCAL_ADDITIONAL_DEPENDENCIES += logcat |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 454 | ifeq ($(TARGET_USES_LOGD), true) |
| 455 | LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc |
| 456 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 457 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 458 | # Allow devices to specify device-specific recovery dependencies |
| 459 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
| 460 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_RECOVERY_DEVICE_MODULES) |
| 461 | endif |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 462 | LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\" |
| 463 | LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\" |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 464 | ifeq ($(TW_INCLUDE_NTFS_3G),true) |
Jason Riordan | 6c28ee8 | 2016-05-12 09:06:57 -0400 | [diff] [blame] | 465 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 466 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 467 | mount.ntfs \ |
| 468 | fsck.ntfs \ |
| 469 | mkfs.ntfs |
| 470 | else |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 471 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 472 | ntfs-3g \ |
| 473 | ntfsfix \ |
| 474 | mkntfs |
| 475 | endif |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 476 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 477 | ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) |
| 478 | ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0) |
| 479 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 480 | fsck.f2fs \ |
| 481 | mkfs.f2fs |
| 482 | endif |
| 483 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 484 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 485 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0) |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 486 | LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 487 | endif |
| 488 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 489 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 490 | LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh |
| 491 | endif |
| 492 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 493 | include $(BUILD_EXECUTABLE) |
| 494 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 495 | # Symlink for file_contexts |
| 496 | include $(CLEAR_VARS) |
| 497 | |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 498 | LOCAL_MODULE := file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 499 | LOCAL_MODULE_TAGS := optional |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 500 | LOCAL_REQUIRED_MODULES := file_contexts.bin |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 501 | LOCAL_POST_INSTALL_CMD := \ |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 502 | $(hide) cp -f $(OUT)/obj/ETC/file_contexts.bin_intermediates/file_contexts.concat.tmp $(TARGET_RECOVERY_ROOT_OUT)/file_contexts |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 503 | |
| 504 | include $(BUILD_PHONY_PACKAGE) |
| 505 | |
Ethan Yonker | 5c93369 | 2014-04-04 11:26:32 -0500 | [diff] [blame] | 506 | ifneq ($(TW_USE_TOOLBOX), true) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 507 | include $(CLEAR_VARS) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 508 | # Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead |
| 509 | BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links) |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 510 | exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 511 | |
Ethan Yonker | a60c786 | 2016-02-25 15:32:06 -0600 | [diff] [blame] | 512 | # Having /sbin/modprobe present on 32 bit devices with can cause a massive |
| 513 | # performance problem if the kernel has CONFIG_MODULES=y |
| 514 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 515 | ifneq ($(TARGET_ARCH), arm64) |
| 516 | ifneq ($(TARGET_ARCH), x86_64) |
| 517 | exclude += modprobe |
| 518 | endif |
| 519 | endif |
| 520 | endif |
| 521 | |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 522 | # If busybox does not have restorecon, assume it does not have SELinux support. |
| 523 | # Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts. |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 524 | ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),) |
| 525 | exclude += ls |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 526 | endif |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 527 | |
| 528 | RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS))) |
| 529 | RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS)) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 530 | $(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox |
| 531 | $(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE) |
| 532 | @echo "Symlink: $@ -> $(BUSYBOX_BINARY)" |
| 533 | @mkdir -p $(dir $@) |
| 534 | @rm -rf $@ |
| 535 | $(hide) ln -sf $(BUSYBOX_BINARY) $@ |
| 536 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 537 | include $(CLEAR_VARS) |
| 538 | LOCAL_MODULE := busybox_symlinks |
| 539 | LOCAL_MODULE_TAGS := optional |
| 540 | LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS) |
Dees Troy | b47f28b | 2014-12-11 17:20:59 +0000 | [diff] [blame] | 541 | ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18)) |
| 542 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS) |
| 543 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 544 | include $(BUILD_PHONY_PACKAGE) |
| 545 | RECOVERY_BUSYBOX_SYMLINKS := |
| 546 | endif # !TW_USE_TOOLBOX |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 547 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 548 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 549 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 550 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 551 | include $(CLEAR_VARS) |
| 552 | LOCAL_SRC_FILES := recovery-persist.cpp |
| 553 | LOCAL_MODULE := recovery-persist |
| 554 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 555 | LOCAL_CFLAGS := -Werror |
| 556 | LOCAL_INIT_RC := recovery-persist.rc |
| 557 | include $(BUILD_EXECUTABLE) |
| 558 | endif |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 559 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 560 | # recovery-refresh (system partition dynamic executable run at init) |
| 561 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 562 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 563 | include $(CLEAR_VARS) |
| 564 | LOCAL_SRC_FILES := recovery-refresh.cpp |
| 565 | LOCAL_MODULE := recovery-refresh |
| 566 | LOCAL_SHARED_LIBRARIES := liblog |
| 567 | LOCAL_CFLAGS := -Werror |
| 568 | LOCAL_INIT_RC := recovery-refresh.rc |
| 569 | include $(BUILD_EXECUTABLE) |
| 570 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 571 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 572 | # shared libfusesideload |
| 573 | # =============================== |
| 574 | include $(CLEAR_VARS) |
| 575 | LOCAL_SRC_FILES := fuse_sideload.cpp |
| 576 | LOCAL_CLANG := true |
| 577 | LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter |
| 578 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 579 | |
| 580 | LOCAL_MODULE_TAGS := optional |
| 581 | LOCAL_MODULE := libfusesideload |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 582 | LOCAL_SHARED_LIBRARIES := libcutils libc |
Ethan Yonker | 99af766 | 2016-09-15 14:48:29 -0500 | [diff] [blame] | 583 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 584 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
| 585 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
| 586 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 587 | else |
| 588 | LOCAL_SHARED_LIBRARIES += libcrypto |
| 589 | endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 590 | include $(BUILD_SHARED_LIBRARY) |
| 591 | |
| 592 | # shared libaosprecovery for Apache code |
| 593 | # =============================== |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 594 | include $(CLEAR_VARS) |
| 595 | |
| 596 | LOCAL_MODULE := libaosprecovery |
Matt Mower | db22044 | 2014-10-31 22:43:59 -0500 | [diff] [blame] | 597 | LOCAL_MODULE_TAGS := eng optional |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 598 | LOCAL_CFLAGS := -std=gnu++0x |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 599 | LOCAL_SRC_FILES := adb_install.cpp asn1_decoder.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp installcommand.cpp |
| 600 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip |
| 601 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 602 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 603 | LOCAL_SHARED_LIBRARIES += libstdc++ libstlport |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 604 | LOCAL_C_INCLUDES += bionic external/stlport/stlport |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 605 | else |
| 606 | LOCAL_SHARED_LIBRARIES += libc++ |
| 607 | endif |
| 608 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 609 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 610 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
Ethan Yonker | 4bf259f | 2016-08-29 11:50:34 -0500 | [diff] [blame] | 611 | LOCAL_SRC_FILES += verifier24/verifier.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 612 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
| 613 | else |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 614 | LOCAL_SHARED_LIBRARIES += libcrypto libbase |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 615 | LOCAL_SRC_FILES += verifier.cpp |
| 616 | endif |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 617 | ifeq ($(AB_OTA_UPDATER),true) |
| 618 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 619 | endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 620 | |
| 621 | include $(BUILD_SHARED_LIBRARY) |
| 622 | |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 623 | # All the APIs for testing |
| 624 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 625 | LOCAL_CLANG := true |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 626 | LOCAL_MODULE := libverifier |
| 627 | LOCAL_MODULE_TAGS := tests |
| 628 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 629 | asn1_decoder.cpp \ |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 630 | verifier.cpp \ |
| 631 | ui.cpp |
Hashcode | 5733215 | 2016-12-20 01:30:49 +0100 | [diff] [blame] | 632 | LOCAL_STATIC_LIBRARIES := libcrypto_static |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 633 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 634 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 635 | commands_recovery_local_path := $(LOCAL_PATH) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 636 | include $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 637 | $(LOCAL_PATH)/tools/Android.mk \ |
| 638 | $(LOCAL_PATH)/edify/Android.mk \ |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 639 | $(LOCAL_PATH)/otafault/Android.mk \ |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 640 | $(LOCAL_PATH)/bootloader_message/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 641 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 1171d3a | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 642 | $(LOCAL_PATH)/update_verifier/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 643 | $(LOCAL_PATH)/applypatch/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 644 | |
Matt Mower | f746dbb | 2015-05-13 22:56:31 -0500 | [diff] [blame] | 645 | ifeq ($(wildcard system/core/uncrypt/Android.mk),) |
| 646 | include $(commands_recovery_local_path)/uncrypt/Android.mk |
| 647 | endif |
| 648 | |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 649 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 650 | include $(commands_recovery_local_path)/minadbd/Android.mk \ |
| 651 | $(commands_recovery_local_path)/minui/Android.mk |
| 652 | else |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 653 | TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21 |
| 654 | include $(commands_recovery_local_path)/minadbd21/Android.mk \ |
| 655 | $(commands_recovery_local_path)/minui21/Android.mk |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 656 | endif |
| 657 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 658 | #includes for TWRP |
Dees_Troy | 930bf01 | 2013-08-10 22:19:03 +0000 | [diff] [blame] | 659 | include $(commands_recovery_local_path)/injecttwrp/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 660 | $(commands_recovery_local_path)/htcdumlock/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 661 | $(commands_recovery_local_path)/gui/Android.mk \ |
| 662 | $(commands_recovery_local_path)/mmcutils/Android.mk \ |
| 663 | $(commands_recovery_local_path)/bmlutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 664 | $(commands_recovery_local_path)/prebuilt/Android.mk \ |
| 665 | $(commands_recovery_local_path)/mtdutils/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 666 | $(commands_recovery_local_path)/flashutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 667 | $(commands_recovery_local_path)/pigz/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 668 | $(commands_recovery_local_path)/libtar/Android.mk \ |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 669 | $(commands_recovery_local_path)/libcrecovery/Android.mk \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 670 | $(commands_recovery_local_path)/libblkid/Android.mk \ |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 671 | $(commands_recovery_local_path)/minuitwrp/Android.mk \ |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 672 | $(commands_recovery_local_path)/openaes/Android.mk \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 673 | $(commands_recovery_local_path)/toolbox/Android.mk \ |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 674 | $(commands_recovery_local_path)/twrpTarMain/Android.mk \ |
Ethan Yonker | 738be7a | 2014-12-10 11:40:43 -0600 | [diff] [blame] | 675 | $(commands_recovery_local_path)/mtp/Android.mk \ |
Ethan Yonker | 2d11d49 | 2014-12-12 11:43:21 -0600 | [diff] [blame] | 676 | $(commands_recovery_local_path)/minzip/Android.mk \ |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 677 | $(commands_recovery_local_path)/dosfstools/Android.mk \ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 678 | $(commands_recovery_local_path)/etc/Android.mk \ |
| 679 | $(commands_recovery_local_path)/toybox/Android.mk \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 680 | $(commands_recovery_local_path)/simg2img/Android.mk \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 681 | $(commands_recovery_local_path)/adbbu/Android.mk \ |
Ethan Yonker | 9175844 | 2017-02-03 13:24:31 -0600 | [diff] [blame] | 682 | $(commands_recovery_local_path)/libpixelflinger/Android.mk \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 683 | $(commands_recovery_local_path)/twrpDigest/Android.mk \ |
Ethan Yonker | 9175844 | 2017-02-03 13:24:31 -0600 | [diff] [blame] | 684 | $(commands_recovery_local_path)/attr/Android.mk |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 685 | |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 686 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 687 | include $(commands_recovery_local_path)/libmincrypt/Android.mk |
| 688 | endif |
| 689 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 690 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 691 | include $(commands_recovery_local_path)/crypto/lollipop/Android.mk |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 692 | include $(commands_recovery_local_path)/crypto/scrypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 693 | ifeq ($(TW_INCLUDE_CRYPTO_FBE), true) |
| 694 | include $(commands_recovery_local_path)/crypto/ext4crypt/Android.mk |
| 695 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 696 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 697 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
| 698 | include $(commands_recovery_local_path)/crypto/vold_decrypt/Android.mk |
| 699 | endif |
| 700 | endif |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 701 | include $(commands_recovery_local_path)/gpt/Android.mk |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 702 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 703 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 704 | TW_NO_EXFAT := true |
| 705 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 706 | ifneq ($(TW_NO_EXFAT), true) |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 707 | include $(commands_recovery_local_path)/exfat/mkfs/Android.mk \ |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 708 | $(commands_recovery_local_path)/exfat/fsck/Android.mk \ |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 709 | $(commands_recovery_local_path)/fuse/Android.mk \ |
| 710 | $(commands_recovery_local_path)/exfat/libexfat/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 711 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 712 | include $(commands_recovery_local_path)/exfat/fuse/Android.mk |
| 713 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 714 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 715 | ifneq ($(TW_OEM_BUILD),true) |
| 716 | include $(commands_recovery_local_path)/orscmd/Android.mk |
| 717 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 718 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 719 | # FB2PNG |
| 720 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 721 | include $(commands_recovery_local_path)/fb2png/Android.mk |
| 722 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 723 | |
| 724 | commands_recovery_local_path := |
| 725 | |
| 726 | endif |