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