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) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 16 | commands_TWRP_local_path := $(LOCAL_PATH) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 17 | |
Ethan Yonker | 66bcd49 | 2018-12-20 09:03:17 -0600 | [diff] [blame] | 18 | ifneq ($(project-path-for),) |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 19 | ifeq ($(LOCAL_PATH),$(call project-path-for,recovery)) |
| 20 | PROJECT_PATH_AGREES := true |
Andrea Mennillo | f591c87 | 2015-11-03 20:58:11 +0100 | [diff] [blame] | 21 | BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 22 | endif |
| 23 | else |
| 24 | ifeq ($(LOCAL_PATH),bootable/recovery) |
| 25 | PROJECT_PATH_AGREES := true |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 26 | BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy |
Ethan Yonker | f0a7e59 | 2019-04-04 10:06:41 -0500 | [diff] [blame] | 27 | else |
| 28 | ifeq ($(LOCAL_PATH),bootable/recovery-twrp) |
| 29 | ifeq ($(RECOVERY_VARIANT),twrp) |
| 30 | PROJECT_PATH_AGREES := true |
| 31 | BOARD_SEPOLICY_DIRS += bootable/recovery-twrp/sepolicy |
| 32 | endif |
| 33 | endif |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 34 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 35 | endif |
| 36 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 37 | ifeq ($(PROJECT_PATH_AGREES),true) |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 38 | |
Matt Mower | 047723c | 2015-12-10 01:31:15 -0600 | [diff] [blame] | 39 | ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22)) |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 40 | # Make recovery domain permissive for TWRP |
that | 8e213fd | 2015-10-17 00:17:53 +0200 | [diff] [blame] | 41 | BOARD_SEPOLICY_UNION += twrp.te |
| 42 | endif |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 43 | |
Michael Bestas | 0cc2376 | 2018-07-13 21:37:56 +0300 | [diff] [blame] | 44 | ifeq ($(CM_PLATFORM_SDK_VERSION),) |
| 45 | CM_PLATFORM_SDK_VERSION := 0 |
| 46 | endif |
| 47 | |
Motorhead1991 | 75b6f66 | 2014-06-12 15:58:33 -0700 | [diff] [blame] | 48 | include $(CLEAR_VARS) |
| 49 | |
Matt Mower | 1777cdc | 2015-09-26 15:56:56 -0500 | [diff] [blame] | 50 | TWRES_PATH := /twres/ |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 51 | TWHTCD_PATH := $(TWRES_PATH)htcd/ |
| 52 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 53 | TARGET_RECOVERY_GUI := true |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 54 | |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 55 | ifneq ($(TW_DEVICE_VERSION),) |
| 56 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"' |
| 57 | else |
| 58 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"' |
| 59 | endif |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 60 | LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 61 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 62 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 63 | twrp.cpp \ |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 64 | fixContexts.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 65 | twrpTar.cpp \ |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 66 | exclude.cpp \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 67 | find_file.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 68 | infomanager.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 69 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 70 | partition.cpp \ |
| 71 | partitionmanager.cpp \ |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 72 | progresstracking.cpp \ |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 73 | twinstall.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 74 | twrp-functions.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 75 | twrpDigestDriver.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 76 | openrecoveryscript.cpp \ |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 77 | tarWrite.c \ |
| 78 | twrpAdbBuFifo.cpp |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 79 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 80 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 81 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 82 | endif |
| 83 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 84 | LOCAL_MODULE := recovery |
| 85 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 86 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 87 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 88 | #ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 89 | #ifeq ($(HOST_OS),linux) |
| 90 | #LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 91 | #endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 92 | #endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 93 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 94 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 95 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 96 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 97 | LOCAL_CFLAGS += -Wno-unused-parameter |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 98 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 99 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 100 | #LOCAL_STATIC_LIBRARIES := \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 101 | # libext4_utils_static \ |
| 102 | # libsparse_static \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 103 | # libminzip \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 104 | # libz \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 105 | # libmtdutils \ |
| 106 | # libmincrypt \ |
| 107 | # libminadbd \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 108 | # libminui \ |
| 109 | # libpixelflinger_static \ |
| 110 | # libpng \ |
| 111 | # libfs_mgr \ |
| 112 | # libcutils \ |
| 113 | # liblog \ |
| 114 | # libselinux \ |
| 115 | # libstdc++ \ |
| 116 | # libm \ |
| 117 | # libc |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 118 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 119 | LOCAL_C_INCLUDES += \ |
| 120 | system/vold \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 121 | system/extras \ |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 122 | system/core/adb \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 123 | system/core/libsparse \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 124 | external/zlib \ |
| 125 | $(LOCAL_PATH)/bootloader_message_twrp/include |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 126 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 127 | LOCAL_C_INCLUDES += bionic |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 128 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 129 | LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 130 | LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22 |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 131 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 132 | LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 133 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 134 | |
| 135 | LOCAL_STATIC_LIBRARIES := |
| 136 | LOCAL_SHARED_LIBRARIES := |
| 137 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 138 | LOCAL_STATIC_LIBRARIES += libguitwrp |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 139 | LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp |
| 140 | LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 141 | |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 142 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 143 | LOCAL_SHARED_LIBRARIES += libstlport |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 144 | LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 145 | endif |
bigbiff | f62d249 | 2020-05-20 10:15:34 -0400 | [diff] [blame] | 146 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 25; echo $$?),0) |
| 147 | LOCAL_CFLAGS += -DUSE_OLD_BASE_INCLUDE |
| 148 | endif |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 149 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 150 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 151 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
| 152 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 153 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 154 | LOCAL_SHARED_LIBRARIES += libcrypto |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 155 | endif |
| 156 | |
Mohd Faraz | 0d9a62e | 2020-02-20 00:10:26 +0530 | [diff] [blame] | 157 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 23; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 158 | LOCAL_SHARED_LIBRARIES += libbase |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 159 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 160 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 161 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 162 | LOCAL_SHARED_LIBRARIES += libziparchive |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 163 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 164 | else |
| 165 | LOCAL_SHARED_LIBRARIES += libminzip |
| 166 | LOCAL_CFLAGS += -DUSE_MINZIP |
| 167 | endif |
| 168 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 169 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 170 | LOCAL_SHARED_LIBRARIES += libsparse |
| 171 | endif |
| 172 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 173 | ifeq ($(TW_OEM_BUILD),true) |
| 174 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 175 | BOARD_HAS_NO_REAL_SDCARD := true |
| 176 | TW_USE_TOOLBOX := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 177 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 178 | endif |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 179 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 180 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 181 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0) |
| 182 | LOCAL_CFLAGS += -DUSE_EXT4 |
bigbiff | a2bd7b7 | 2020-05-07 21:45:34 -0400 | [diff] [blame] | 183 | endif |
| 184 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 28; echo $$?),0) |
| 185 | LOCAL_C_INCLUDES += system/extras/ext4_utils \ |
| 186 | system/extras/ext4_utils/include \ |
bigbiff | 186eb70 | 2020-06-08 15:59:32 -0400 | [diff] [blame] | 187 | $(commands_TWRP_local_path)/crypto/ext4crypt |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 188 | LOCAL_SHARED_LIBRARIES += libext4_utils |
| 189 | ifneq ($(wildcard external/lz4/Android.mk),) |
| 190 | #LOCAL_STATIC_LIBRARIES += liblz4 |
| 191 | endif |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 192 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 193 | endif |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 194 | LOCAL_C_INCLUDES += external/libselinux/include |
| 195 | LOCAL_SHARED_LIBRARIES += libselinux |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 196 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 197 | ifeq ($(AB_OTA_UPDATER),true) |
| 198 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
bigbiff bigbiff | c630cee | 2019-01-03 20:14:06 -0500 | [diff] [blame] | 199 | LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0 |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 200 | TWRP_REQUIRED_MODULES += libhardware |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 201 | endif |
| 202 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 203 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 204 | |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 205 | #ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 206 | # LOCAL_SRC_FILES += default_device.cpp |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 207 | #else |
| 208 | # LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 209 | #endif |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 210 | ifeq ($(TARGET_RECOVERY_TWRP_LIB),) |
| 211 | LOCAL_SRC_FILES += BasePartition.cpp |
| 212 | else |
| 213 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB) |
| 214 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 215 | |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 216 | tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null) |
| 217 | ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1) |
| 218 | tw_git_revision := $(tw_git_revision)-dirty |
| 219 | endif |
| 220 | LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"' |
| 221 | |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 222 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
mauronofrio | 8ff93eb | 2020-03-16 14:59:39 +0000 | [diff] [blame] | 223 | ifeq ($(TW_FORCE_USE_BUSYBOX), true) |
| 224 | TW_USE_TOOLBOX := false |
| 225 | else |
| 226 | TW_USE_TOOLBOX := true |
| 227 | endif |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 228 | ifeq ($(TW_EXCLUDE_MTP),) |
| 229 | LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs |
| 230 | endif |
| 231 | else |
| 232 | ifeq ($(TW_EXCLUDE_MTP),) |
| 233 | LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP |
| 234 | LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy |
| 235 | endif |
| 236 | endif |
| 237 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 238 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 239 | ifeq ($(TW_EXCLUDE_MTP),) |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 240 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 241 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 242 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 243 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 244 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 245 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 246 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 247 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 248 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 249 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 250 | endif |
| 251 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 252 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 253 | endif |
| 254 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 255 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 256 | endif |
| 257 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 258 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 259 | endif |
| 260 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 261 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 262 | endif |
| 263 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 264 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 265 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 266 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 267 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 268 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 269 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 270 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 271 | endif |
| 272 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 273 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 274 | endif |
| 275 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 276 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 277 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 278 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 279 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 280 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 281 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 282 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 283 | endif |
| 284 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 285 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 286 | endif |
| 287 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 288 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 289 | endif |
| 290 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 291 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 292 | endif |
| 293 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 294 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 295 | endif |
| 296 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 297 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 298 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 299 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 300 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 301 | endif |
| 302 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 303 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 304 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 305 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 306 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 307 | endif |
mauronofrio | e9a49ef | 2018-10-03 13:38:16 +0200 | [diff] [blame] | 308 | ifeq ($(TW_HAS_EDL_MODE), true) |
| 309 | LOCAL_CFLAGS += -DTW_HAS_EDL_MODE |
| 310 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 311 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 312 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 313 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 314 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 315 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 316 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 317 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 318 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 319 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 320 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 321 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 322 | endif |
bigbiff bigbiff | 3ed778a | 2019-03-12 19:28:31 -0400 | [diff] [blame] | 323 | ifeq ($(TW_NO_HAPTICS), true) |
| 324 | LOCAL_CFLAGS += -DTW_NO_HAPTICS |
| 325 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 326 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 327 | TW_INCLUDE_CRYPTO := true |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 328 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 329 | ifeq ($(TW_INCLUDE_L_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 330 | TW_INCLUDE_CRYPTO := true |
| 331 | endif |
| 332 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 333 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
Ethan Yonker | 98661c1 | 2018-10-17 08:39:28 -0500 | [diff] [blame] | 334 | LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 335 | LOCAL_C_INCLUDES += external/boringssl/src/include |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 336 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 337 | TW_INCLUDE_CRYPTO_FBE := true |
| 338 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE |
| 339 | LOCAL_SHARED_LIBRARIES += libe4crypt |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 340 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 341 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT |
| 342 | endif |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 343 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 344 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 345 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
Captain Throwback | 3284a66 | 2020-02-04 15:34:06 -0500 | [diff] [blame] | 346 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 347 | TW_INCLUDE_LIBRESETPROP := true |
| 348 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 349 | LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD |
| 350 | LOCAL_STATIC_LIBRARIES += libvolddecrypt |
| 351 | endif |
| 352 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 353 | endif |
D. Andrei Măceș | b29a5e2 | 2016-12-22 06:19:44 -0500 | [diff] [blame] | 354 | WITH_CRYPTO_UTILS := \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 355 | $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true) |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 356 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 357 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 358 | endif |
lambdadroid | fc0b16d | 2017-08-04 17:16:53 +0200 | [diff] [blame] | 359 | ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true) |
| 360 | LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID |
| 361 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 362 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 363 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 364 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 365 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 366 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 367 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 368 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 369 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 370 | endif |
Greg Wallace | 36ade45 | 2015-11-08 13:54:25 -0500 | [diff] [blame] | 371 | ifneq ($(TW_DEFAULT_BRIGHTNESS),) |
| 372 | LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS) |
| 373 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 374 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 375 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 376 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 377 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 378 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 379 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 380 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 381 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 382 | else |
| 383 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 384 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 385 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
Michael Bestas | 4a18558 | 2017-04-28 15:45:26 +0300 | [diff] [blame] | 386 | ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),) |
| 387 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 388 | else ifeq ($(TARGET_CPU_VARIANT),krait) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 389 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 390 | endif |
| 391 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 392 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 393 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 394 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 395 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 396 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 397 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 398 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 399 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 400 | ifneq ($(TARGET_RECOVERY_INITRC),) |
| 401 | TW_EXCLUDE_DEFAULT_USB_INIT := true |
| 402 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 403 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 404 | LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD |
| 405 | endif |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 406 | ifneq ($(TW_DEFAULT_LANGUAGE),) |
| 407 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE) |
| 408 | else |
| 409 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en |
| 410 | endif |
Phoenix591 | e444d11 | 2018-02-03 07:23:54 +0000 | [diff] [blame] | 411 | ifneq ($(TW_CLOCK_OFFSET),) |
| 412 | LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET) |
| 413 | endif |
Chaosmaster | 461e39f | 2020-02-07 01:48:13 +0100 | [diff] [blame] | 414 | ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),) |
| 415 | TW_INCLUDE_LIBRESETPROP := true |
| 416 | LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS) |
| 417 | endif |
| 418 | ifneq ($(TW_INCLUDE_LIBRESETPROP),) |
Chaosmaster | 97c4541 | 2020-02-15 19:11:45 +0100 | [diff] [blame] | 419 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 420 | $(warning libresetprop is not available for android < 7) |
| 421 | else |
| 422 | LOCAL_SHARED_LIBRARIES += libresetprop |
| 423 | LOCAL_C_INCLUDES += external/magisk-prebuilt/include |
| 424 | LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP |
| 425 | endif |
Chaosmaster | 461e39f | 2020-02-07 01:48:13 +0100 | [diff] [blame] | 426 | endif |
| 427 | |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 428 | TWRP_REQUIRED_MODULES += \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 429 | dump_image \ |
| 430 | erase_image \ |
| 431 | flash_image \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 432 | mke2fs.conf \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 433 | pigz \ |
| 434 | teamwin \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 435 | toolbox_symlinks \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 436 | twrp \ |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 437 | fsck.fat \ |
| 438 | fatlabel \ |
| 439 | mkfs.fat \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 440 | permissive.sh \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 441 | simg2img_twrp \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 442 | libbootloader_message_twrp \ |
| 443 | init.recovery.hlthchrg.rc \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 444 | init.recovery.service.rc |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 445 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 446 | ifneq ($(TARGET_ARCH), arm64) |
Ethan Yonker | 4f6a976 | 2015-03-09 13:58:54 -0500 | [diff] [blame] | 447 | ifneq ($(TARGET_ARCH), x86_64) |
| 448 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 449 | else |
| 450 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 451 | endif |
Ethan Yonker | 1902c79 | 2014-12-03 16:48:36 -0600 | [diff] [blame] | 452 | else |
| 453 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 454 | endif |
| 455 | ifneq ($(TW_USE_TOOLBOX), true) |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 456 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 457 | LOCAL_POST_INSTALL_CMD := \ |
| 458 | $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \ |
| 459 | ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh |
| 460 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 461 | else |
| 462 | ifneq ($(wildcard external/toybox/Android.mk),) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 463 | TWRP_REQUIRED_MODULES += toybox_symlinks |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 464 | endif |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 465 | ifneq ($(wildcard external/zip/Android.mk),) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 466 | TWRP_REQUIRED_MODULES += zip |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 467 | endif |
| 468 | ifneq ($(wildcard external/unzip/Android.mk),) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 469 | TWRP_REQUIRED_MODULES += unzip |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 470 | endif |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 471 | endif |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 472 | |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 473 | ifneq ($(TW_NO_EXFAT), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 474 | TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 475 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 476 | TWRP_REQUIRED_MODULES += exfat-fuse |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 477 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 478 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 479 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 480 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 481 | TWRP_REQUIRED_MODULES += sgdisk |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 482 | else |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 483 | TWRP_REQUIRED_MODULES += sgdisk_static |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 484 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 485 | endif |
| 486 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 487 | TWRP_REQUIRED_MODULES += openaes openaes_license |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 488 | endif |
| 489 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 490 | TWRP_REQUIRED_MODULES += \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 491 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 492 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 493 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 494 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 495 | TWRP_REQUIRED_MODULES += fb2png |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 496 | endif |
| 497 | ifneq ($(TW_OEM_BUILD),true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 498 | TWRP_REQUIRED_MODULES += orscmd |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 499 | endif |
| 500 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 501 | TWRP_REQUIRED_MODULES += bml_over_mtd |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 502 | endif |
| 503 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 504 | TWRP_REQUIRED_MODULES += injecttwrp |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 505 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 506 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 507 | TWRP_REQUIRED_MODULES += init.recovery.usb.rc |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 508 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 509 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 510 | TWRP_REQUIRED_MODULES += logcat |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 511 | ifeq ($(TARGET_USES_LOGD), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 512 | TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 513 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 514 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 515 | # Allow devices to specify device-specific recovery dependencies |
| 516 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 517 | TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES) |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 518 | endif |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 519 | LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\" |
| 520 | LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\" |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 521 | ifeq ($(TW_INCLUDE_NTFS_3G),true) |
Jason Riordan | 6c28ee8 | 2016-05-12 09:06:57 -0400 | [diff] [blame] | 522 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 523 | TWRP_REQUIRED_MODULES += \ |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 524 | mount.ntfs \ |
| 525 | fsck.ntfs \ |
| 526 | mkfs.ntfs |
| 527 | else |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 528 | TWRP_REQUIRED_MODULES += \ |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 529 | ntfs-3g \ |
| 530 | ntfsfix \ |
| 531 | mkntfs |
| 532 | endif |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 533 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 534 | ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) |
| 535 | ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 536 | TWRP_REQUIRED_MODULES += \ |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 537 | fsck.f2fs \ |
| 538 | mkfs.f2fs |
| 539 | endif |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 540 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 541 | TWRP_REQUIRED_MODULES += sload.f2fs |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 542 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 543 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 544 | |
Captain Throwback | 8d70eb6 | 2019-11-12 09:57:29 -0500 | [diff] [blame] | 545 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 546 | TWRP_REQUIRED_MODULES += ld.config.txt |
Martin Dünkelmann | c630b38 | 2019-12-30 15:19:03 +0100 | [diff] [blame] | 547 | TWRP_REQUIRED_MODULES += init.recovery.ldconfig.rc |
| 548 | LOCAL_POST_INSTALL_CMD += \ |
| 549 | sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \ |
| 550 | $(TARGET_OUT_ETC)/ld.config*.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt; |
Captain Throwback | 8d70eb6 | 2019-11-12 09:57:29 -0500 | [diff] [blame] | 551 | endif |
| 552 | |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 553 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0) |
| 554 | TWRP_REQUIRED_MODULES += file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 555 | endif |
| 556 | |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 557 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 558 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 559 | TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh |
| 560 | endif |
| 561 | endif |
| 562 | |
| 563 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 564 | LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES) |
| 565 | else |
| 566 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES) |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 567 | endif |
| 568 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 569 | include $(BUILD_EXECUTABLE) |
| 570 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 571 | # Symlink for file_contexts |
| 572 | include $(CLEAR_VARS) |
| 573 | |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 574 | LOCAL_MODULE := file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 575 | LOCAL_MODULE_TAGS := optional |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 576 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 577 | LOCAL_REQUIRED_MODULES := file_contexts.bin |
| 578 | else |
| 579 | LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin |
| 580 | endif |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 581 | LOCAL_POST_INSTALL_CMD := \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 582 | $(hide) cp -f $(PRODUCT_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] | 583 | |
| 584 | include $(BUILD_PHONY_PACKAGE) |
| 585 | |
Ethan Yonker | 5c93369 | 2014-04-04 11:26:32 -0500 | [diff] [blame] | 586 | ifneq ($(TW_USE_TOOLBOX), true) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 587 | include $(CLEAR_VARS) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 588 | # Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead |
| 589 | BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links) |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 590 | exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 591 | |
Ethan Yonker | a60c786 | 2016-02-25 15:32:06 -0600 | [diff] [blame] | 592 | # Having /sbin/modprobe present on 32 bit devices with can cause a massive |
| 593 | # performance problem if the kernel has CONFIG_MODULES=y |
| 594 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 595 | ifneq ($(TARGET_ARCH), arm64) |
| 596 | ifneq ($(TARGET_ARCH), x86_64) |
| 597 | exclude += modprobe |
| 598 | endif |
| 599 | endif |
| 600 | endif |
| 601 | |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 602 | # If busybox does not have restorecon, assume it does not have SELinux support. |
| 603 | # 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] | 604 | ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),) |
| 605 | exclude += ls |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 606 | endif |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 607 | |
| 608 | RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS))) |
| 609 | RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS)) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 610 | $(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox |
| 611 | $(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE) |
| 612 | @echo "Symlink: $@ -> $(BUSYBOX_BINARY)" |
| 613 | @mkdir -p $(dir $@) |
| 614 | @rm -rf $@ |
| 615 | $(hide) ln -sf $(BUSYBOX_BINARY) $@ |
| 616 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 617 | include $(CLEAR_VARS) |
| 618 | LOCAL_MODULE := busybox_symlinks |
| 619 | LOCAL_MODULE_TAGS := optional |
| 620 | LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS) |
Dees Troy | b47f28b | 2014-12-11 17:20:59 +0000 | [diff] [blame] | 621 | ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18)) |
| 622 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS) |
| 623 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 624 | include $(BUILD_PHONY_PACKAGE) |
| 625 | RECOVERY_BUSYBOX_SYMLINKS := |
| 626 | endif # !TW_USE_TOOLBOX |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 627 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 628 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 629 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 630 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 631 | include $(CLEAR_VARS) |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 632 | LOCAL_SRC_FILES := \ |
| 633 | recovery-persist.cpp \ |
| 634 | rotate_logs.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 635 | LOCAL_MODULE := recovery-persist |
| 636 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 637 | LOCAL_CFLAGS := -Werror |
| 638 | LOCAL_INIT_RC := recovery-persist.rc |
| 639 | include $(BUILD_EXECUTABLE) |
| 640 | endif |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 641 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 642 | # recovery-refresh (system partition dynamic executable run at init) |
| 643 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 644 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 645 | include $(CLEAR_VARS) |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 646 | LOCAL_SRC_FILES := \ |
| 647 | recovery-refresh.cpp \ |
| 648 | rotate_logs.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 649 | LOCAL_MODULE := recovery-refresh |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 650 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 651 | LOCAL_CFLAGS := -Werror |
| 652 | LOCAL_INIT_RC := recovery-refresh.rc |
| 653 | include $(BUILD_EXECUTABLE) |
| 654 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 655 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 656 | # shared libfusesideload |
| 657 | # =============================== |
| 658 | include $(CLEAR_VARS) |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 659 | LOCAL_CLANG := true |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 660 | LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 661 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 662 | |
| 663 | LOCAL_MODULE_TAGS := optional |
| 664 | LOCAL_MODULE := libfusesideload |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 665 | LOCAL_SHARED_LIBRARIES := libcutils libc |
Ethan Yonker | 99af766 | 2016-09-15 14:48:29 -0500 | [diff] [blame] | 666 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 667 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
| 668 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
| 669 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 670 | else |
| 671 | LOCAL_SHARED_LIBRARIES += libcrypto |
| 672 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 673 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
| 674 | LOCAL_SRC_FILES := fuse_sideload22.cpp |
| 675 | LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22 |
| 676 | else |
| 677 | LOCAL_SRC_FILES := fuse_sideload.cpp |
| 678 | endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 679 | include $(BUILD_SHARED_LIBRARY) |
| 680 | |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 681 | # static libfusesideload |
| 682 | # =============================== (required to fix build errors in 8.1 due to use by tests) |
| 683 | include $(CLEAR_VARS) |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 684 | LOCAL_CLANG := true |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 685 | LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 686 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 687 | |
| 688 | LOCAL_MODULE_TAGS := optional |
| 689 | LOCAL_MODULE := libfusesideload |
| 690 | LOCAL_SHARED_LIBRARIES := libcutils libc |
| 691 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 692 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
| 693 | LOCAL_STATIC_LIBRARIES += libmincrypttwrp |
| 694 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 695 | else |
| 696 | LOCAL_STATIC_LIBRARIES += libcrypto_static |
| 697 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 698 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
| 699 | LOCAL_SRC_FILES := fuse_sideload22.cpp |
| 700 | LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22 |
| 701 | else |
| 702 | LOCAL_SRC_FILES := fuse_sideload.cpp |
| 703 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 704 | include $(BUILD_STATIC_LIBRARY) |
| 705 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 706 | # libmounts (static library) |
| 707 | # =============================== |
| 708 | include $(CLEAR_VARS) |
| 709 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 710 | LOCAL_CFLAGS := \ |
| 711 | -Wall \ |
| 712 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 713 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 714 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 715 | include $(BUILD_STATIC_LIBRARY) |
| 716 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 717 | # librecovery (static library) |
| 718 | # =============================== |
| 719 | include $(CLEAR_VARS) |
| 720 | LOCAL_SRC_FILES := \ |
| 721 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 722 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 723 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 25dbe17 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 724 | |
| 725 | ifeq ($(AB_OTA_UPDATER),true) |
| 726 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 727 | endif |
| 728 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 729 | LOCAL_MODULE := librecovery |
| 730 | LOCAL_STATIC_LIBRARIES := \ |
| 731 | libminui \ |
Tao Bao | cfe53c2 | 2017-10-03 14:37:21 -0700 | [diff] [blame] | 732 | libotautil \ |
Tao Bao | da320ac | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 733 | libvintf_recovery \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 734 | libcrypto_utils \ |
| 735 | libcrypto \ |
Elliott Hughes | e1bb7a5 | 2017-06-28 08:00:17 -0700 | [diff] [blame] | 736 | libbase \ |
| 737 | libziparchive \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 738 | |
| 739 | include $(BUILD_STATIC_LIBRARY) |
| 740 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 741 | # shared libaosprecovery for Apache code |
| 742 | # =============================== |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 743 | include $(CLEAR_VARS) |
| 744 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 745 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 746 | LOCAL_MODULE := libaosprecovery |
Matt Mower | db22044 | 2014-10-31 22:43:59 -0500 | [diff] [blame] | 747 | LOCAL_MODULE_TAGS := eng optional |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 748 | LOCAL_CFLAGS := -std=gnu++0x |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 749 | LOCAL_SRC_FILES := adb_install.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp installcommand.cpp zipwrap.cpp |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 750 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip |
| 751 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 752 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 753 | LOCAL_SHARED_LIBRARIES += libstdc++ libstlport |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 754 | LOCAL_C_INCLUDES += bionic external/stlport/stlport |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 755 | LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22 |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 756 | else |
| 757 | LOCAL_SHARED_LIBRARIES += libc++ |
| 758 | endif |
| 759 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 760 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 761 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 762 | LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 763 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
| 764 | else |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 765 | LOCAL_SHARED_LIBRARIES += libcrypto libbase |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 766 | LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 767 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 768 | endif |
Tao Bao | a92d8fb | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 769 | |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 770 | ifeq ($(AB_OTA_UPDATER),true) |
| 771 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 772 | endif |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 773 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 774 | LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 775 | LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils |
| 776 | LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 777 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include |
| 778 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0) |
| 779 | # Android 9.0 needs c++17 for libvintf |
| 780 | LOCAL_CPPFLAGS += -std=c++17 |
| 781 | # Android 9.0's libvintf also needs this library |
| 782 | LOCAL_STATIC_LIBRARIES += libhidl-gen-utils |
| 783 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 784 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 785 | LOCAL_CFLAGS += -DUSE_MINZIP |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 786 | endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 787 | |
| 788 | include $(BUILD_SHARED_LIBRARY) |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 789 | # libverifier (static library) |
| 790 | # =============================== |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 791 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 792 | LOCAL_CLANG := true |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 793 | LOCAL_MODULE := libverifier |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 794 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 795 | asn1_decoder.cpp \ |
Tao Bao | d7bf82e | 2017-03-18 09:24:11 -0700 | [diff] [blame] | 796 | verifier.cpp |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 797 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 09e468f | 2017-09-29 14:39:33 -0700 | [diff] [blame] | 798 | libotautil \ |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 799 | libcrypto_utils \ |
| 800 | libcrypto \ |
| 801 | libbase |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 802 | LOCAL_CFLAGS := -Wall -Werror |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 803 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 804 | |
Tao Bao | 016120f | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 805 | # Wear default device |
| 806 | # =============================== |
| 807 | include $(CLEAR_VARS) |
| 808 | LOCAL_SRC_FILES := wear_device.cpp |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 809 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 016120f | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 810 | |
| 811 | # Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk. |
| 812 | LOCAL_MODULE := librecovery_ui_wear |
| 813 | |
| 814 | include $(BUILD_STATIC_LIBRARY) |
| 815 | |
Luke Song | a44dba7 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 816 | # vr headset default device |
| 817 | # =============================== |
| 818 | include $(CLEAR_VARS) |
| 819 | |
| 820 | LOCAL_SRC_FILES := vr_device.cpp |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 821 | LOCAL_CFLAGS := -Wall -Werror |
Luke Song | a44dba7 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 822 | |
| 823 | # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk |
| 824 | LOCAL_MODULE := librecovery_ui_vr |
| 825 | |
| 826 | include $(BUILD_STATIC_LIBRARY) |
| 827 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 828 | commands_recovery_local_path := $(LOCAL_PATH) |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 829 | |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 830 | # $(LOCAL_PATH)/edify/Android.mk |
| 831 | # $(LOCAL_PATH)/otafault/Android.mk |
| 832 | # $(LOCAL_PATH)/bootloader_message/Android.mk |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 833 | include \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 834 | $(commands_TWRP_local_path)/boot_control/Android.mk \ |
| 835 | $(commands_TWRP_local_path)/tests/Android.mk \ |
| 836 | $(commands_TWRP_local_path)/tools/Android.mk \ |
| 837 | $(commands_TWRP_local_path)/updater/Android.mk \ |
| 838 | $(commands_TWRP_local_path)/update_verifier/Android.mk \ |
| 839 | $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk |
| 840 | |
| 841 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0) |
| 842 | include $(commands_TWRP_local_path)/bootloader_message/Android.mk |
| 843 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 844 | |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 845 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 846 | include $(commands_TWRP_local_path)/mtp/ffs/Android.mk |
| 847 | else |
| 848 | include $(commands_TWRP_local_path)/mtp/legacy/Android.mk |
| 849 | endif |
| 850 | |
Matt Mower | f746dbb | 2015-05-13 22:56:31 -0500 | [diff] [blame] | 851 | ifeq ($(wildcard system/core/uncrypt/Android.mk),) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 852 | #include $(commands_TWRP_local_path)/uncrypt/Android.mk |
Matt Mower | f746dbb | 2015-05-13 22:56:31 -0500 | [diff] [blame] | 853 | endif |
| 854 | |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 855 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 856 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0) |
| 857 | TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA |
| 858 | CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA |
| 859 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 860 | include $(commands_TWRP_local_path)/minadbd/Android.mk \ |
| 861 | $(commands_TWRP_local_path)/minui/Android.mk |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 862 | else |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 863 | TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21 |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 864 | include $(commands_TWRP_local_path)/minadbd21/Android.mk \ |
| 865 | $(commands_TWRP_local_path)/minui21/Android.mk |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 866 | endif |
| 867 | |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 868 | #$(commands_TWRP_local_path)/otautil/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 869 | #includes for TWRP |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 870 | include $(commands_TWRP_local_path)/injecttwrp/Android.mk \ |
| 871 | $(commands_TWRP_local_path)/htcdumlock/Android.mk \ |
| 872 | $(commands_TWRP_local_path)/gui/Android.mk \ |
| 873 | $(commands_TWRP_local_path)/mmcutils/Android.mk \ |
| 874 | $(commands_TWRP_local_path)/bmlutils/Android.mk \ |
| 875 | $(commands_TWRP_local_path)/prebuilt/Android.mk \ |
| 876 | $(commands_TWRP_local_path)/mtdutils/Android.mk \ |
| 877 | $(commands_TWRP_local_path)/flashutils/Android.mk \ |
| 878 | $(commands_TWRP_local_path)/pigz/Android.mk \ |
| 879 | $(commands_TWRP_local_path)/libtar/Android.mk \ |
| 880 | $(commands_TWRP_local_path)/libcrecovery/Android.mk \ |
| 881 | $(commands_TWRP_local_path)/libblkid/Android.mk \ |
| 882 | $(commands_TWRP_local_path)/minuitwrp/Android.mk \ |
| 883 | $(commands_TWRP_local_path)/openaes/Android.mk \ |
| 884 | $(commands_TWRP_local_path)/toolbox/Android.mk \ |
| 885 | $(commands_TWRP_local_path)/twrpTarMain/Android.mk \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 886 | $(commands_TWRP_local_path)/minzip/Android.mk \ |
| 887 | $(commands_TWRP_local_path)/dosfstools/Android.mk \ |
| 888 | $(commands_TWRP_local_path)/etc/Android.mk \ |
| 889 | $(commands_TWRP_local_path)/toybox/Android.mk \ |
| 890 | $(commands_TWRP_local_path)/simg2img/Android.mk \ |
| 891 | $(commands_TWRP_local_path)/adbbu/Android.mk \ |
| 892 | $(commands_TWRP_local_path)/libpixelflinger/Android.mk \ |
| 893 | $(commands_TWRP_local_path)/twrpDigest/Android.mk \ |
| 894 | $(commands_TWRP_local_path)/attr/Android.mk |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 895 | |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 896 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 897 | include $(commands_TWRP_local_path)/libmincrypt/Android.mk |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 898 | endif |
| 899 | |
mauronofrio | 0ff5984 | 2019-10-26 19:47:55 +0200 | [diff] [blame^] | 900 | ifneq ($(TW_OZIP_DECRYPT_KEY),) |
| 901 | TWRP_REQUIRED_MODULES += ozip_decrypt |
| 902 | include $(commands_TWRP_local_path)/ozip_decrypt/Android.mk |
| 903 | endif |
| 904 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 905 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 98661c1 | 2018-10-17 08:39:28 -0500 | [diff] [blame] | 906 | include $(commands_TWRP_local_path)/crypto/fde/Android.mk |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 907 | include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 908 | ifeq ($(TW_INCLUDE_CRYPTO_FBE), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 909 | include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 910 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 911 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 912 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 913 | include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 914 | endif |
| 915 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 916 | include $(commands_TWRP_local_path)/gpt/Android.mk |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 917 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 918 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 919 | TW_NO_EXFAT := true |
| 920 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 921 | ifneq ($(TW_NO_EXFAT), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 922 | include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \ |
| 923 | $(commands_TWRP_local_path)/exfat/fsck/Android.mk \ |
| 924 | $(commands_TWRP_local_path)/fuse/Android.mk \ |
| 925 | $(commands_TWRP_local_path)/exfat/libexfat/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 926 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 927 | include $(commands_TWRP_local_path)/exfat/fuse/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 928 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 929 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 930 | ifneq ($(TW_OEM_BUILD),true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 931 | include $(commands_TWRP_local_path)/orscmd/Android.mk |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 932 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 933 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 934 | # FB2PNG |
| 935 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 936 | include $(commands_TWRP_local_path)/fb2png/Android.mk |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 937 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 938 | |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 939 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 940 | |
| 941 | commands_TWRP_local_path := |