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