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