blob: 6875d03610d245ef2faa316c1015d866161e0b53 [file] [log] [blame]
Joe Onorato6396e702012-05-31 23:21:46 -07001# 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 Projectc24a8e62009-03-03 19:28:42 -080014
Joe Onorato6396e702012-05-31 23:21:46 -070015LOCAL_PATH := $(call my-dir)
Ethan Yonker58f21322018-08-24 11:17:36 -050016commands_TWRP_local_path := $(LOCAL_PATH)
Joe Onorato6396e702012-05-31 23:21:46 -070017
Ethan Yonker66bcd492018-12-20 09:03:17 -060018ifneq ($(project-path-for),)
Matt Mower66766fe2014-10-06 18:03:39 -050019 ifeq ($(LOCAL_PATH),$(call project-path-for,recovery))
20 PROJECT_PATH_AGREES := true
Andrea Mennillof591c872015-11-03 20:58:11 +010021 BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy
Matt Mower66766fe2014-10-06 18:03:39 -050022 endif
23else
24 ifeq ($(LOCAL_PATH),bootable/recovery)
25 PROJECT_PATH_AGREES := true
Ethan Yonker11309e92015-07-01 07:58:56 -050026 BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy
Ethan Yonkerf0a7e592019-04-04 10:06:41 -050027 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 Mower66766fe2014-10-06 18:03:39 -050034 endif
Matt Mower55c75ca2014-08-31 11:30:15 -050035endif
36
Matt Mower66766fe2014-10-06 18:03:39 -050037ifeq ($(PROJECT_PATH_AGREES),true)
Matt Mower55c75ca2014-08-31 11:30:15 -050038
Matt Mower047723c2015-12-10 01:31:15 -060039ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22))
Ethan Yonker11309e92015-07-01 07:58:56 -050040# Make recovery domain permissive for TWRP
that8e213fd2015-10-17 00:17:53 +020041 BOARD_SEPOLICY_UNION += twrp.te
42endif
Ethan Yonker11309e92015-07-01 07:58:56 -050043
Michael Bestas0cc23762018-07-13 21:37:56 +030044ifeq ($(CM_PLATFORM_SDK_VERSION),)
45 CM_PLATFORM_SDK_VERSION := 0
46endif
47
Motorhead199175b6f662014-06-12 15:58:33 -070048include $(CLEAR_VARS)
49
Matt Mower1777cdc2015-09-26 15:56:56 -050050TWRES_PATH := /twres/
Dees Troy3454ade2015-01-20 19:21:04 +000051TWHTCD_PATH := $(TWRES_PATH)htcd/
52
Dees_Troy51a0e822012-09-05 15:24:24 -040053TARGET_RECOVERY_GUI := true
Joe Onorato6396e702012-05-31 23:21:46 -070054
bigbiff bigbiff584b9772016-12-08 21:21:17 -050055ifneq ($(TW_DEVICE_VERSION),)
56 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
57else
58 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
59endif
dianlujitao4879b372018-12-03 18:45:47 +080060LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbiff bigbiff584b9772016-12-08 21:21:17 -050061
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000063 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060064 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050065 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060066 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050067 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040068 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040069 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040070 partition.cpp \
71 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060072 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040073 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040074 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040075 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000076 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040077 tarWrite.c \
78 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040079
Dees_Troya58bead2012-09-27 09:49:29 -040080ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040081 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
82endif
83
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084LOCAL_MODULE := recovery
85
Doug Zongkere08991e2010-02-02 13:09:52 -080086RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080087RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070088LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080089LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070090LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070091
Dan Albert1ddd3502015-02-18 15:58:15 -080092LOCAL_C_INCLUDES += \
93 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -050094 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -080095 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -050096 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -050097 external/zlib \
bigbiffd58ba182020-03-23 10:02:29 -040098 system/core/libpixelflinger/include \
99 external/freetype/include \
100 $(LOCAL_PATH)/bootloader_message_twrp/include \
101 $(LOCAL_PATH)/recovery_ui/include \
102 $(LOCAL_PATH)/otautil/include \
103 $(LOCAL_PATH)/install/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100104
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400105LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800106ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400107 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500108 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400109else
bigbiffd58ba182020-03-23 10:02:29 -0400110 ifeq ($shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
111 LOCAL_C_INCLUDES += $(LOCAL_PATH)/fuse_sideload28/
112 else
113 LOCAL_C_FLAGS += -DUSE_OLD_LOAD_KEYS
114 LOCAL_C_INCLUDES += $(LOCAL_PATH)/fuse_sideload/include \
115 $(LOCAL_PATH)/install/include
116 endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500117 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800118endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400119
120LOCAL_STATIC_LIBRARIES :=
121LOCAL_SHARED_LIBRARIES :=
122
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600123LOCAL_STATIC_LIBRARIES += libguitwrp
bigbiffd58ba182020-03-23 10:02:29 -0400124LOCAL_SHARED_LIBRARIES += libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
125LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++ libaosprecovery
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500126
Xing0af1ac12015-11-27 11:19:37 -0800127ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500128 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400129 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500130endif
131ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
132 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500133 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
134 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500135else
bigbiffd58ba182020-03-23 10:02:29 -0400136 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 29; echo $$?),0)
137 LOCAL_C_INCLUDES += $(LOCAL_PATH)/verifier28/
138 LOCAL_CFLAGS += -DUSE_28_VERIFIER
139 else
140 LOCAL_C_INCLUDES += $(LOCAL_PATH)/install/include
141 endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500142 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500143endif
144
Mohd Faraz0d9a62e2020-02-20 00:10:26 +0530145ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 23; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500146 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500147endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700148
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500149ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
bigbiffd58ba182020-03-23 10:02:29 -0400150 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
151 LOCAL_SHARED_LIBRARIES += libziparchive
152 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include system/core/libziparchive/include
153 else
154 LOCAL_SHARED_LIBRARIES += libziparchive
155 LOCAL_C_INCLUDES += system/core/libziparchive/include
156 LOCAL_C_FLAGS += -DUSE_
157 endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500158else
159 LOCAL_SHARED_LIBRARIES += libminzip
160 LOCAL_CFLAGS += -DUSE_MINZIP
161endif
162
Dees_Troy4546fe72013-01-10 14:33:27 +0000163ifneq ($(wildcard system/core/libsparse/Android.mk),)
164LOCAL_SHARED_LIBRARIES += libsparse
165endif
166
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500167ifeq ($(TW_OEM_BUILD),true)
168 LOCAL_CFLAGS += -DTW_OEM_BUILD
169 BOARD_HAS_NO_REAL_SDCARD := true
170 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400171 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500172endif
Yabin Cui99281df2016-02-17 12:21:52 -0800173
Doug Zongker49c73a72010-06-29 17:36:28 -0700174ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500175 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
176 LOCAL_CFLAGS += -DUSE_EXT4
177 LOCAL_C_INCLUDES += system/extras/ext4_utils
178 LOCAL_SHARED_LIBRARIES += libext4_utils
179 ifneq ($(wildcard external/lz4/Android.mk),)
180 #LOCAL_STATIC_LIBRARIES += liblz4
181 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700182 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700183endif
Matt Mower87413642017-01-17 21:14:46 -0600184LOCAL_C_INCLUDES += external/libselinux/include
185LOCAL_SHARED_LIBRARIES += libselinux
Doug Zongker49c73a72010-06-29 17:36:28 -0700186
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700187ifeq ($(AB_OTA_UPDATER),true)
188 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500189 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500190 TWRP_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700191endif
192
Ying Wang5a50b1b2015-03-10 11:56:56 -0700193LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194
Ethan Yonker93382822018-11-01 15:25:31 -0500195ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
196 LOCAL_SRC_FILES += BasePartition.cpp
197else
198 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
199endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800200
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700201LOCAL_C_INCLUDES += system/extras/ext4_utils
202
that0e2140e2016-08-10 21:04:26 +0200203tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
204ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
205 tw_git_revision := $(tw_git_revision)-dirty
206endif
207LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
208
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500209ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
mauronofriobabc15e2020-03-16 14:59:39 +0000210ifeq ($(TW_FORCE_USE_BUSYBOX), true)
211 TW_USE_TOOLBOX := false
212else
213 TW_USE_TOOLBOX := true
214endif
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500215ifeq ($(TW_EXCLUDE_MTP),)
216 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
217endif
218else
219ifeq ($(TW_EXCLUDE_MTP),)
220 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
221 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
222endif
223endif
224
Dees_Troy51a0e822012-09-05 15:24:24 -0400225#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400226ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400227 LOCAL_CFLAGS += -DTW_HAS_MTP
228endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700229ifneq ($(TW_NO_SCREEN_TIMEOUT),)
230 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
231endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400232ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
233 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
234endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400235ifneq ($(RECOVERY_SDCARD_ON_DATA),)
236 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
237endif
238ifneq ($(TW_INCLUDE_DUMLOCK),)
239 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
240endif
241ifneq ($(TW_INTERNAL_STORAGE_PATH),)
242 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
243endif
244ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
245 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
246endif
247ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
248 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
249endif
250ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
251 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
252endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530253ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
254 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
255endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400256ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
257 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
258endif
259ifeq ($(TW_NO_REBOOT_RECOVERY), true)
260 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
261endif
262ifeq ($(TW_NO_BATT_PERCENT), true)
263 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
264endif
Jenkins1710bf22014-10-02 20:22:21 -0400265ifeq ($(TW_NO_CPU_TEMP), true)
266 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
267endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400268ifneq ($(TW_CUSTOM_POWER_BUTTON),)
269 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
270endif
271ifeq ($(TW_ALWAYS_RMRF), true)
272 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
273endif
274ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
275 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
276endif
277ifeq ($(TW_NO_USB_STORAGE), true)
278 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
279endif
280ifeq ($(TW_INCLUDE_INJECTTWRP), true)
281 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
282endif
283ifeq ($(TW_INCLUDE_BLOBPACK), true)
284 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
285endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400286ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
287 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
288endif
289ifneq ($(BOARD_UMS_LUNFILE),)
290 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
291endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400292ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
293 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
294endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200295ifeq ($(TW_HAS_EDL_MODE), true)
296 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
297endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500298ifeq ($(TW_NO_SCREEN_BLANK), true)
299 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
300endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400301ifeq ($(TW_SDEXT_NO_EXT4), true)
302 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
303endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400304ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
305 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
306endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000307ifeq ($(TW_NO_EXFAT_FUSE), true)
308 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
309endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400310ifeq ($(TW_NO_HAPTICS), true)
311 LOCAL_CFLAGS += -DTW_NO_HAPTICS
312endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400313ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600314 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400315endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600316ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600317 TW_INCLUDE_CRYPTO := true
318endif
319ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600320 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500321 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500322 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600323 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
324 TW_INCLUDE_CRYPTO_FBE := true
325 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
326 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500327 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
328 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
329 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600330 endif
nkk7171c6c502017-01-05 23:55:05 +0200331 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
332 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Captain Throwback89a03cc2020-02-04 15:34:06 -0500333 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
334 TW_INCLUDE_LIBRESETPROP := true
335 endif
nkk7171c6c502017-01-05 23:55:05 +0200336 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
337 LOCAL_STATIC_LIBRARIES += libvolddecrypt
338 endif
339 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600340endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500341WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500342 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700343ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
344 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
345endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200346ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
347 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
348endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600349ifneq ($(TW_BRIGHTNESS_PATH),)
350 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
351endif
xNUTxe85f02d2014-07-18 01:30:58 +0200352ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
353 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
354endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600355ifneq ($(TW_MAX_BRIGHTNESS),)
356 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
357endif
Greg Wallace36ade452015-11-08 13:54:25 -0500358ifneq ($(TW_DEFAULT_BRIGHTNESS),)
359 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
360endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000361ifneq ($(TW_CUSTOM_BATTERY_PATH),)
362 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
363endif
Jenkins1710bf22014-10-02 20:22:21 -0400364ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
365 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
366endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000367ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
368 LOCAL_SHARED_LIBRARIES += libopenaes
369else
370 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
371endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100372ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300373 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 Bocekd0e38bc2014-02-03 23:36:57 +0100376 LOCAL_CFLAGS += -DQCOM_RTC_FIX
377 endif
378else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
379 LOCAL_CFLAGS += -DQCOM_RTC_FIX
380endif
Matt Mower6883d732014-03-20 17:28:13 -0500381ifneq ($(TW_NO_LEGACY_PROPS),)
382 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
383endif
Dees Troy4159aed2014-02-28 17:24:43 +0000384ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
385 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
386endif
Matt Mowerec009e82015-01-30 13:00:49 -0600387ifneq ($(TARGET_RECOVERY_INITRC),)
388 TW_EXCLUDE_DEFAULT_USB_INIT := true
389endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500390ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
391 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
392endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500393ifneq ($(TW_DEFAULT_LANGUAGE),)
394 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
395else
396 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
397endif
Phoenix591e444d112018-02-03 07:23:54 +0000398ifneq ($(TW_CLOCK_OFFSET),)
399 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
400endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100401ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),)
402 TW_INCLUDE_LIBRESETPROP := true
403 LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS)
404endif
405ifneq ($(TW_INCLUDE_LIBRESETPROP),)
Chaosmaster97c45412020-02-15 19:11:45 +0100406 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
407 $(warning libresetprop is not available for android < 7)
408 else
409 LOCAL_SHARED_LIBRARIES += libresetprop
410 LOCAL_C_INCLUDES += external/magisk-prebuilt/include
411 LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP
412 endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100413endif
414
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500415TWRP_REQUIRED_MODULES += \
bigbiffd58ba182020-03-23 10:02:29 -0400416 relink \
417 relink_init \
Matt Mower031163b2014-11-01 15:13:03 -0500418 dump_image \
419 erase_image \
420 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500421 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500422 pigz \
423 teamwin \
Matt Mower031163b2014-11-01 15:13:03 -0500424 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600425 fsck.fat \
426 fatlabel \
427 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500428 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500429 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500430 libbootloader_message_twrp \
431 init.recovery.hlthchrg.rc \
bigbiff973167a2020-04-06 15:44:20 -0400432 init.recovery.service.rc \
433 init.recovery.ldconfig.rc \
434 awk
Matt Mower031163b2014-11-01 15:13:03 -0500435
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600436ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500437 ifneq ($(TARGET_ARCH), x86_64)
438 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
439 else
440 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
441 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600442else
443 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600444endif
bigbiff416fe3a2020-03-28 13:46:48 -0400445
446ifneq ($(wildcard external/zip/Android.mk),)
447 TWRP_REQUIRED_MODULES += zip
448endif
449ifneq ($(wildcard external/unzip/Android.mk),)
450 TWRP_REQUIRED_MODULES += unzip
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600451endif
Matt Mower84057612017-01-08 13:32:18 -0600452
Matt Mower20172792014-11-14 10:54:03 -0600453ifneq ($(TW_NO_EXFAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500454 TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600455 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500456 TWRP_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600457 endif
Matt Mower20172792014-11-14 10:54:03 -0600458endif
Matt Mower031163b2014-11-01 15:13:03 -0500459ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600460 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500461 TWRP_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600462 else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500463 TWRP_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600464 endif
Matt Mower031163b2014-11-01 15:13:03 -0500465endif
466ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500467 TWRP_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500468endif
469ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500470 TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500471 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
472 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
473endif
Matt Mower031163b2014-11-01 15:13:03 -0500474ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500475 TWRP_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500476endif
477ifneq ($(TW_OEM_BUILD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500478 TWRP_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500479endif
480ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500481 TWRP_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500482endif
483ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500484 TWRP_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500485endif
Matt Mowerec009e82015-01-30 13:00:49 -0600486ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500487 TWRP_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600488endif
Captain Throwback1f127752016-01-19 17:30:20 -0500489ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500490 TWRP_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600491 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500492 TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600493 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500494endif
Matt Mower031163b2014-11-01 15:13:03 -0500495# Allow devices to specify device-specific recovery dependencies
496ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500497 TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500498endif
Dees Troy3454ade2015-01-20 19:21:04 +0000499LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
500LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500501ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400502ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500503 TWRP_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500504 mount.ntfs \
505 fsck.ntfs \
506 mkfs.ntfs
507else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500508 TWRP_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500509 ntfs-3g \
510 ntfsfix \
511 mkntfs
512endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500513endif
Matt Mower58294912015-12-10 11:54:28 -0600514ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
515ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500516 TWRP_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600517 fsck.f2fs \
518 mkfs.f2fs
519endif
Ethan Yonker93382822018-11-01 15:25:31 -0500520ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
bigbiffd58ba182020-03-23 10:02:29 -0400521 TWRP_REQUIRED_MODULES += sload.f2fs \
522 libfs_mgr \
523 fs_mgr \
524 libinit
Ethan Yonker93382822018-11-01 15:25:31 -0500525endif
Matt Mower58294912015-12-10 11:54:28 -0600526endif
Matt Mower031163b2014-11-01 15:13:03 -0500527
Captain Throwback8d70eb62019-11-12 09:57:29 -0500528ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
529 TWRP_REQUIRED_MODULES += ld.config.txt
bigbiffd58ba182020-03-23 10:02:29 -0400530 ifeq ($(BOARD_VNDK_RUNTIME_DISABLE),true)
531 LOCAL_POST_INSTALL_CMD += \
532 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
533 $(TARGET_OUT_ETC)/ld.config.vndk_lite.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
534 else
535 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
536 LOCAL_POST_INSTALL_CMD += \
537 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
bigbiff973167a2020-04-06 15:44:20 -0400538 $(TARGET_RECOVERY_ROOT_OUT)/system/etc/ld.config.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt
bigbiffd58ba182020-03-23 10:02:29 -0400539 else
540 LOCAL_POST_INSTALL_CMD += \
541 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
542 $(TARGET_OUT_ETC)/ld.config.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
543 endif
544 endif
Captain Throwback8d70eb62019-11-12 09:57:29 -0500545endif
546
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500547ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
548 TWRP_REQUIRED_MODULES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600549endif
550
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500551ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
552 ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
553 TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh
554 endif
555endif
556
557ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
558 LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES)
559else
560 LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES)
Mark Salyzyn13aca592016-03-09 14:58:16 -0800561endif
562
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800563include $(BUILD_EXECUTABLE)
564
Matt Mowerd821c962017-02-15 12:36:18 -0600565# Symlink for file_contexts
566include $(CLEAR_VARS)
567
Captain Throwback3184b2f2017-03-07 12:07:40 -0500568LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600569LOCAL_MODULE_TAGS := optional
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500570ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
571 LOCAL_REQUIRED_MODULES := file_contexts.bin
572else
573 LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin
574endif
Matt Mowerd821c962017-02-15 12:36:18 -0600575LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500576 $(hide) cp -f $(PRODUCT_OUT)/obj/ETC/file_contexts.bin_intermediates/file_contexts.concat.tmp $(TARGET_RECOVERY_ROOT_OUT)/file_contexts
Matt Mowerd821c962017-02-15 12:36:18 -0600577
bigbiff416fe3a2020-03-28 13:46:48 -0400578include $(BUILD_PHONY_PACKAGE)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400579
Mark Salyzyn13aca592016-03-09 14:58:16 -0800580# recovery-persist (system partition dynamic executable run after /data mounts)
581# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500582ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
583 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500584 LOCAL_SRC_FILES := \
bigbiffd58ba182020-03-23 10:02:29 -0400585 recovery-persist.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500586 LOCAL_MODULE := recovery-persist
bigbiffd58ba182020-03-23 10:02:29 -0400587 LOCAL_SHARED_LIBRARIES := liblog libbase libmetricslogger
588 LOCAL_STATIC_LIBRARIES := libotautil
589 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
590 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 29; echo $$?),0)
591 LOCAL_C_INCLUDES += system/core/libmetricslogger/include \
592 system/core/libstats/include
593 endif
Ethan Yonkerf1179622016-08-25 15:32:21 -0500594 LOCAL_CFLAGS := -Werror
595 LOCAL_INIT_RC := recovery-persist.rc
596 include $(BUILD_EXECUTABLE)
597endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800598
Mark Salyzyn13aca592016-03-09 14:58:16 -0800599# recovery-refresh (system partition dynamic executable run at init)
600# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500601ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
602 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500603 LOCAL_SRC_FILES := \
bigbiffd58ba182020-03-23 10:02:29 -0400604 recovery-refresh.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500605 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500606 LOCAL_SHARED_LIBRARIES := liblog libbase
bigbiffd58ba182020-03-23 10:02:29 -0400607 LOCAL_STATIC_LIBRARIES := libotautil
608 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500609 LOCAL_CFLAGS := -Werror
610 LOCAL_INIT_RC := recovery-refresh.rc
611 include $(BUILD_EXECUTABLE)
612endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800613
Ethan Yonker34ae4832016-08-24 15:32:18 -0500614# shared libfusesideload
615# ===============================
bigbiffd58ba182020-03-23 10:02:29 -0400616ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
617 include $(CLEAR_VARS)
618 LOCAL_CLANG := true
619 LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
620 LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
Ethan Yonker34ae4832016-08-24 15:32:18 -0500621
bigbiffd58ba182020-03-23 10:02:29 -0400622 LOCAL_MODULE_TAGS := optional
623 LOCAL_MODULE := libfusesideload
624 LOCAL_SHARED_LIBRARIES := libcutils libc
625 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
626 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
627 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
628 LOCAL_CFLAGS += -DUSE_MINCRYPT
629 else
630 LOCAL_SHARED_LIBRARIES += libcrypto libbase
631 endif
632 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
633 LOCAL_SRC_FILES := fuse_sideload22.cpp
634 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
635 else
636 # ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
637 LOCAL_SRC_FILES := fuse_sideload28/fuse_sideload.cpp
638 # else
639 # LOCAL_SRC_FILES := fuse_sideload/fuse_sideload.cpp \
640 fuse_sideload/fuse_provider.cpp
641 # endif
642 endif
643 include $(BUILD_SHARED_LIBRARY)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500644endif
Tao Bao42c45e22018-07-31 09:37:12 -0700645
Elliott Hughes63a31922016-06-09 17:41:22 -0700646# libmounts (static library)
647# ===============================
648include $(CLEAR_VARS)
649LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700650LOCAL_CFLAGS := \
651 -Wall \
652 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700653LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700654LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700655include $(BUILD_STATIC_LIBRARY)
656
Tao Bao62e0bc72017-04-10 16:55:57 -0700657# librecovery (static library)
658# ===============================
659include $(CLEAR_VARS)
660LOCAL_SRC_FILES := \
661 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700662LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700663LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700664
665ifeq ($(AB_OTA_UPDATER),true)
666 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
667endif
668
Tao Bao62e0bc72017-04-10 16:55:57 -0700669LOCAL_MODULE := librecovery
670LOCAL_STATIC_LIBRARIES := \
671 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700672 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700673 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700674 libcrypto_utils \
675 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700676 libbase \
677 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700678
679include $(BUILD_STATIC_LIBRARY)
680
Ethan Yonker34ae4832016-08-24 15:32:18 -0500681# shared libaosprecovery for Apache code
682# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000683include $(CLEAR_VARS)
684
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800685
Dees_Troy2673cec2013-04-02 20:22:16 +0000686LOCAL_MODULE := libaosprecovery
bigbiffd58ba182020-03-23 10:02:29 -0400687LOCAL_MODULE_TAGS := optional
688ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
689 LOCAL_SRC_FILES := install28/adb_install.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp \
690 installcommand.cpp zipwrap.cpp
691else
692 LOCAL_SRC_FILES := install/adb_install.cpp install/asn1_decoder.cpp install/fuse_sdcard_install.cpp\
693 install/install.cpp install/installcommand.cpp install/legacy_property_service.cpp \
694 install/package.cpp install/verifier.cpp install/wipe_data.cpp install/tw_atomic.cpp \
695 install/set_metadata.cpp verifier28/verifier.cpp install/zipwrap.cpp install/ZipUtil.cpp
696endif
697LOCAL_SHARED_LIBRARIES += libbase libbootloader_message libcrypto libext4_utils \
698 libfs_mgr libfusesideload libhidl-gen-utils libhidlbase libhidltransport \
699 liblog libselinux libtinyxml2 libutils libz libziparchive libcutils
Ethan Yonker941a8992016-12-05 09:04:30 -0600700LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500701ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500702 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600703 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500704 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500705else
706 LOCAL_SHARED_LIBRARIES += libc++
707endif
708ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
709 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600710 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500711 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500712 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
713else
bigbiffd58ba182020-03-23 10:02:29 -0400714 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 24; echo $$?),0)
715 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 28; echo $$?),0)
716 LOCAL_CFLAGS := -std=gnu++2a
717 LOCAL_C_INCLUDES += $(commands_TWRP_local_path)/install/include \
718 $(commands_TWRP_local_path)/recovery_ui/include \
719 $(commands_TWRP_local_path)/otautil/include \
720 $(commands_TWRP_local_path)/minadbd \
721 $(commands_TWRP_local_path)/minzip \
722 system/libvintf/include
723 LOCAL_STATIC_LIBRARIES += libotautil libvintf_recovery libvintf
724 else
725 LOCAL_C_INCLUDES += $(commands_TWRP_local_path)/install28/
726 LOCAL_CFLAGS += -DUSE_28_INSTALL
727 endif
728 LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
729 else
730 LOCAL_SHARED_LIBRARIES += libcrypto libbase
731 LOCAL_SRC_FILES += verifier28/verifier.cpp verifier28/asn1_decoder.cpp
732 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include $(LOCAL_PATH)/verifier28 \
733 system/libvintf/include
734 LOCAL_CFLAGS += -DUSE_28_VERIFIER
735 endif
Ethan Yonkerf1179622016-08-25 15:32:21 -0500736endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700737
Ethan Yonker941a8992016-12-05 09:04:30 -0600738ifeq ($(AB_OTA_UPDATER),true)
739 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
740endif
bigbiffd58ba182020-03-23 10:02:29 -0400741
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500742ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
bigbiffd58ba182020-03-23 10:02:29 -0400743 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
744 # LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
745 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils libfs_mgr
746 LOCAL_STATIC_LIBRARIES += libvintf_recovery liblogwrap libavb libvintf libtinyxml2 libz
747 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
748 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
749 # Android 9.0's libvintf also needs this library
750 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
751 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500752 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800753else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500754 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800755endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000756
757include $(BUILD_SHARED_LIBRARY)
bigbiffd58ba182020-03-23 10:02:29 -0400758
Tao Baod80a9982016-03-03 11:43:47 -0800759# libverifier (static library)
760# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700761include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700762LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700763LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700764LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700765 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700766 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800767LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700768 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800769 libcrypto_utils \
770 libcrypto \
771 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700772LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800773include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800774
Dees_Troy51a0e822012-09-05 15:24:24 -0400775commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600776
Ethan Yonker58f21322018-08-24 11:17:36 -0500777# $(LOCAL_PATH)/edify/Android.mk
778# $(LOCAL_PATH)/otafault/Android.mk
bigbiffd58ba182020-03-23 10:02:29 -0400779
780 # $(commands_TWRP_local_path)/boot_control/Android.bp
bigbiffd58ba182020-03-23 10:02:29 -0400781 # $(commands_TWRP_local_path)/update_verifier/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700782include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500783 $(commands_TWRP_local_path)/updater/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500784 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
785
786ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
787include $(commands_TWRP_local_path)/bootloader_message/Android.mk
788endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400789
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500790ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
791 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
792else
793 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
794endif
795
Matt Mowerf746dbb2015-05-13 22:56:31 -0500796ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500797 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500798endif
799
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500800ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500801 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
802 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
803 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
804 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500805 include $(commands_TWRP_local_path)/minadbd/Android.mk \
806 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500807else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500808 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500809 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
810 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500811endif
812
bigbiffd58ba182020-03-23 10:02:29 -0400813 # $(commands_TWRP_local_path)/otautil/Android.mk \
814
Dees_Troy51a0e822012-09-05 15:24:24 -0400815#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500816include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
817 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
818 $(commands_TWRP_local_path)/gui/Android.mk \
819 $(commands_TWRP_local_path)/mmcutils/Android.mk \
820 $(commands_TWRP_local_path)/bmlutils/Android.mk \
821 $(commands_TWRP_local_path)/prebuilt/Android.mk \
822 $(commands_TWRP_local_path)/mtdutils/Android.mk \
823 $(commands_TWRP_local_path)/flashutils/Android.mk \
824 $(commands_TWRP_local_path)/pigz/Android.mk \
825 $(commands_TWRP_local_path)/libtar/Android.mk \
826 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
827 $(commands_TWRP_local_path)/libblkid/Android.mk \
828 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
829 $(commands_TWRP_local_path)/openaes/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500830 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500831 $(commands_TWRP_local_path)/minzip/Android.mk \
832 $(commands_TWRP_local_path)/dosfstools/Android.mk \
833 $(commands_TWRP_local_path)/etc/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500834 $(commands_TWRP_local_path)/simg2img/Android.mk \
835 $(commands_TWRP_local_path)/adbbu/Android.mk \
836 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
837 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
838 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600839
Ethan Yonker534d4e02016-08-26 10:05:03 -0500840ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500841 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500842endif
843
Ethan Yonker253368a2014-11-25 15:00:52 -0600844ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500845 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500846 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600847 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500848 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600849 endif
nkk7171c6c502017-01-05 23:55:05 +0200850 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
851 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500852 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200853 endif
854 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500855 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600856endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100857ifeq ($(BUILD_ID), GINGERBREAD)
858 TW_NO_EXFAT := true
859endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000860ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500861 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
862 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
863 $(commands_TWRP_local_path)/fuse/Android.mk \
864 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600865 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500866 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600867 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400868endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500869ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500870 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500871endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500872
Talustus3019a912013-04-06 11:50:07 +0200873# FB2PNG
874ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500875 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200876endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500877
Matt Mower55c75ca2014-08-31 11:30:15 -0500878endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500879
880commands_TWRP_local_path :=