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