blob: bc078d4e64e053bb3565137080d467b2e6ca7b84 [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 \
bigbiff56b02eb2020-07-06 20:24:34 -040078 twrpAdbBuFifo.cpp \
79 twrpRepacker.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040080
Dees_Troya58bead2012-09-27 09:49:29 -040081ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040082 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
83endif
84
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080085LOCAL_MODULE := recovery
86
Dees_Troy51a0e822012-09-05 15:24:24 -040087#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088
Ethan Yonker34ae4832016-08-24 15:32:18 -050089#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060090#ifeq ($(HOST_OS),linux)
91#LOCAL_REQUIRED_MODULES := mkfs.f2fs
92#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050093#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070094
Doug Zongkere08991e2010-02-02 13:09:52 -080095RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080096RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070097LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080098LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070099LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700100
Dees_Troy51a0e822012-09-05 15:24:24 -0400101#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +0000102# libext4_utils_static \
103# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -0400104# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +0000105# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -0400106# libmtdutils \
107# libmincrypt \
108# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +0000109# libminui \
110# libpixelflinger_static \
111# libpng \
112# libfs_mgr \
113# libcutils \
114# liblog \
115# libselinux \
116# libstdc++ \
117# libm \
118# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400119
Dan Albert1ddd3502015-02-18 15:58:15 -0800120LOCAL_C_INCLUDES += \
121 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500122 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800123 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500124 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500125 external/zlib \
126 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100127
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400128LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800129ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400130 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500131 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400132else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500133 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800134endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400135
136LOCAL_STATIC_LIBRARIES :=
137LOCAL_SHARED_LIBRARIES :=
138
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600139LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500140LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
141LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500142
Xing0af1ac12015-11-27 11:19:37 -0800143ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500144 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400145 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500146endif
Mohd Faraze8f7ea32020-06-12 20:38:58 +0530147LOCAL_CFLAGS += -DSDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbifff62d2492020-05-20 10:15:34 -0400148ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 25; echo $$?),0)
149 LOCAL_CFLAGS += -DUSE_OLD_BASE_INCLUDE
150endif
Ethan Yonker534d4e02016-08-26 10:05:03 -0500151ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
152 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500153 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
154 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500155else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500156 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500157endif
158
Mohd Faraz0d9a62e2020-02-20 00:10:26 +0530159ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 23; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500160 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500161endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700162
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500163ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
164 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500165 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500166else
167 LOCAL_SHARED_LIBRARIES += libminzip
168 LOCAL_CFLAGS += -DUSE_MINZIP
169endif
170
Dees_Troy4546fe72013-01-10 14:33:27 +0000171ifneq ($(wildcard system/core/libsparse/Android.mk),)
172LOCAL_SHARED_LIBRARIES += libsparse
173endif
174
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500175ifeq ($(TW_OEM_BUILD),true)
176 LOCAL_CFLAGS += -DTW_OEM_BUILD
177 BOARD_HAS_NO_REAL_SDCARD := true
178 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400179 TW_EXCLUDE_MTP := true
Captain Throwback2f7afe12021-01-30 11:46:11 -0500180 TW_EXCLUDE_TZDATA := true
nebrassyd3242eb2021-02-12 23:36:44 +0100181 TW_EXCLUDE_NANO := true
DarthJabba98ed56152021-02-20 19:17:01 -0500182 TW_EXCLUDE_BASH := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500183endif
Yabin Cui99281df2016-02-17 12:21:52 -0800184
Doug Zongker49c73a72010-06-29 17:36:28 -0700185ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500186 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
187 LOCAL_CFLAGS += -DUSE_EXT4
bigbiffa2bd7b72020-05-07 21:45:34 -0400188 LOCAL_C_INCLUDES += system/extras/ext4_utils \
189 system/extras/ext4_utils/include \
bigbiff186eb702020-06-08 15:59:32 -0400190 $(commands_TWRP_local_path)/crypto/ext4crypt
Ethan Yonker58f21322018-08-24 11:17:36 -0500191 LOCAL_SHARED_LIBRARIES += libext4_utils
192 ifneq ($(wildcard external/lz4/Android.mk),)
193 #LOCAL_STATIC_LIBRARIES += liblz4
194 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700195 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700196endif
Matt Mower87413642017-01-17 21:14:46 -0600197LOCAL_C_INCLUDES += external/libselinux/include
198LOCAL_SHARED_LIBRARIES += libselinux
Doug Zongker49c73a72010-06-29 17:36:28 -0700199
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700200ifeq ($(AB_OTA_UPDATER),true)
201 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500202 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500203 TWRP_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700204endif
205
Captain Throwback9cf5fe62021-12-31 21:35:52 -0500206ifneq ($(TW_SYSTEM_BUILD_PROP_ADDITIONAL_PATHS),)
207 LOCAL_CFLAGS += -DTW_SYSTEM_BUILD_PROP_ADDITIONAL_PATHS='"$(TW_SYSTEM_BUILD_PROP_ADDITIONAL_PATHS)"'
208endif
209
Ying Wang5a50b1b2015-03-10 11:56:56 -0700210LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800211
Dees_Troy1669f892013-09-04 18:35:08 +0000212#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500213# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000214#else
215# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
216#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500217ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
218 LOCAL_SRC_FILES += BasePartition.cpp
219else
220 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
221endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800222
that0e2140e2016-08-10 21:04:26 +0200223tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
224ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
225 tw_git_revision := $(tw_git_revision)-dirty
226endif
227LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
228
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500229ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
mauronofrio8ff93eb2020-03-16 14:59:39 +0000230ifeq ($(TW_FORCE_USE_BUSYBOX), true)
231 TW_USE_TOOLBOX := false
232else
233 TW_USE_TOOLBOX := true
234endif
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500235ifeq ($(TW_EXCLUDE_MTP),)
236 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
237endif
238else
239ifeq ($(TW_EXCLUDE_MTP),)
240 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
241 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
242endif
243endif
244
Captain Throwback4bce54b2021-09-16 10:04:26 -0400245ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true)
246 LOCAL_CFLAGS += -DBOARD_USES_RECOVERY_AS_BOOT
247endif
248ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE), true)
249 LOCAL_CFLAGS += -DBOARD_BUILD_SYSTEM_ROOT_IMAGE
250endif
251
Dees_Troy51a0e822012-09-05 15:24:24 -0400252#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400253ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400254 LOCAL_CFLAGS += -DTW_HAS_MTP
255endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700256ifneq ($(TW_NO_SCREEN_TIMEOUT),)
257 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
258endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400259ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
260 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
261endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400262ifneq ($(RECOVERY_SDCARD_ON_DATA),)
263 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
264endif
265ifneq ($(TW_INCLUDE_DUMLOCK),)
266 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
267endif
268ifneq ($(TW_INTERNAL_STORAGE_PATH),)
269 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
270endif
271ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
272 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
273endif
274ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
275 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
276endif
277ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
278 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
279endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530280ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
281 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
282endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400283ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
284 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
285endif
286ifeq ($(TW_NO_REBOOT_RECOVERY), true)
287 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
288endif
289ifeq ($(TW_NO_BATT_PERCENT), true)
290 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
291endif
Jenkins1710bf22014-10-02 20:22:21 -0400292ifeq ($(TW_NO_CPU_TEMP), true)
293 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
294endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400295ifneq ($(TW_CUSTOM_POWER_BUTTON),)
296 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
297endif
298ifeq ($(TW_ALWAYS_RMRF), true)
299 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
300endif
301ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
302 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
303endif
304ifeq ($(TW_NO_USB_STORAGE), true)
305 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
306endif
307ifeq ($(TW_INCLUDE_INJECTTWRP), true)
308 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
309endif
310ifeq ($(TW_INCLUDE_BLOBPACK), true)
311 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
312endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400313ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
314 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
315endif
316ifneq ($(BOARD_UMS_LUNFILE),)
317 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
318endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400319ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
320 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
321endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200322ifeq ($(TW_HAS_EDL_MODE), true)
323 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
324endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500325ifeq ($(TW_NO_SCREEN_BLANK), true)
326 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
327endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400328ifeq ($(TW_SDEXT_NO_EXT4), true)
329 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
330endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400331ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
332 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
333endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000334ifeq ($(TW_NO_EXFAT_FUSE), true)
335 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
336endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400337ifeq ($(TW_NO_HAPTICS), true)
338 LOCAL_CFLAGS += -DTW_NO_HAPTICS
339endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400340ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600341 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400342endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600343ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600344 TW_INCLUDE_CRYPTO := true
345endif
346ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600347 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500348 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500349 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600350 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
351 TW_INCLUDE_CRYPTO_FBE := true
352 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
353 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500354 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
355 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
356 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600357 endif
nkk7171c6c502017-01-05 23:55:05 +0200358 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
359 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Captain Throwback3284a662020-02-04 15:34:06 -0500360 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
361 TW_INCLUDE_LIBRESETPROP := true
362 endif
nkk7171c6c502017-01-05 23:55:05 +0200363 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
364 LOCAL_STATIC_LIBRARIES += libvolddecrypt
365 endif
366 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600367endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500368WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500369 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700370ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
371 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
372endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200373ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
374 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
375endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600376ifneq ($(TW_BRIGHTNESS_PATH),)
377 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
378endif
xNUTxe85f02d2014-07-18 01:30:58 +0200379ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
380 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
381endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600382ifneq ($(TW_MAX_BRIGHTNESS),)
383 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
384endif
Greg Wallace36ade452015-11-08 13:54:25 -0500385ifneq ($(TW_DEFAULT_BRIGHTNESS),)
386 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
387endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000388ifneq ($(TW_CUSTOM_BATTERY_PATH),)
389 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
390endif
Jenkins1710bf22014-10-02 20:22:21 -0400391ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
392 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
393endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000394ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
395 LOCAL_SHARED_LIBRARIES += libopenaes
396else
397 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
398endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100399ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300400 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
401 LOCAL_CFLAGS += -DQCOM_RTC_FIX
402 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100403 LOCAL_CFLAGS += -DQCOM_RTC_FIX
404 endif
405else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
406 LOCAL_CFLAGS += -DQCOM_RTC_FIX
407endif
Matt Mower6883d732014-03-20 17:28:13 -0500408ifneq ($(TW_NO_LEGACY_PROPS),)
409 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
410endif
Dees Troy4159aed2014-02-28 17:24:43 +0000411ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
412 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
413endif
Matt Mowerec009e82015-01-30 13:00:49 -0600414ifneq ($(TARGET_RECOVERY_INITRC),)
415 TW_EXCLUDE_DEFAULT_USB_INIT := true
416endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500417ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
418 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
419endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500420ifneq ($(TW_DEFAULT_LANGUAGE),)
421 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
422else
423 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
424endif
Captain Throwback593f5312022-01-19 13:25:54 -0500425ifneq ($(TW_QCOM_ATS_OFFSET),)
426 LOCAL_CFLAGS += -DTW_QCOM_ATS_OFFSET=$(TW_QCOM_ATS_OFFSET)
427endif
Phoenix591e444d112018-02-03 07:23:54 +0000428ifneq ($(TW_CLOCK_OFFSET),)
429 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
430endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100431ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),)
432 TW_INCLUDE_LIBRESETPROP := true
433 LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS)
434endif
435ifneq ($(TW_INCLUDE_LIBRESETPROP),)
Chaosmaster97c45412020-02-15 19:11:45 +0100436 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
437 $(warning libresetprop is not available for android < 7)
438 else
439 LOCAL_SHARED_LIBRARIES += libresetprop
440 LOCAL_C_INCLUDES += external/magisk-prebuilt/include
441 LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP
442 endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100443endif
Captain Throwback3b556102021-02-12 19:32:36 -0500444ifeq ($(TW_EXCLUDE_NANO), true)
445 LOCAL_CFLAGS += -DTW_EXCLUDE_NANO
446endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100447
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500448TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500449 dump_image \
450 erase_image \
451 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500452 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500453 pigz \
454 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500455 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500456 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600457 fsck.fat \
458 fatlabel \
459 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500460 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500461 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500462 libbootloader_message_twrp \
463 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500464 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500465
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600466ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500467 ifneq ($(TARGET_ARCH), x86_64)
468 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
469 else
470 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
471 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600472else
473 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600474endif
475ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600476 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Captain Throwback4165cc62020-11-05 13:44:56 -0500477 LOCAL_POST_INSTALL_CMD += \
Captain Throwback60642f02021-11-22 17:32:44 -0500478 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin; \
479 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh;
Matt Mower84057612017-01-08 13:32:18 -0600480 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500481else
482 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500483 TWRP_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500484 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800485 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500486 TWRP_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800487 endif
488 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500489 TWRP_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800490 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600491endif
Matt Mower84057612017-01-08 13:32:18 -0600492
Matt Mower20172792014-11-14 10:54:03 -0600493ifneq ($(TW_NO_EXFAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500494 TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600495 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500496 TWRP_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600497 endif
Matt Mower20172792014-11-14 10:54:03 -0600498endif
Matt Mower031163b2014-11-01 15:13:03 -0500499ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600500 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500501 TWRP_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600502 else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500503 TWRP_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600504 endif
Matt Mower031163b2014-11-01 15:13:03 -0500505endif
506ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500507 TWRP_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500508endif
509ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500510 TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500511 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
512 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
513endif
Matt Mower031163b2014-11-01 15:13:03 -0500514ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500515 TWRP_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500516endif
517ifneq ($(TW_OEM_BUILD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500518 TWRP_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500519endif
520ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500521 TWRP_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500522endif
523ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500524 TWRP_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500525endif
Matt Mowerec009e82015-01-30 13:00:49 -0600526ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500527 TWRP_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600528endif
Captain Throwback1f127752016-01-19 17:30:20 -0500529ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500530 TWRP_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600531 ifeq ($(TARGET_USES_LOGD), true)
Captain Throwbackd3cdfc92020-12-27 20:23:04 -0500532 TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
533 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
534 TWRP_REQUIRED_MODULES += event-log-tags
535 ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true)
536 LOCAL_POST_INSTALL_CMD += \
Captain Throwback60642f02021-11-22 17:32:44 -0500537 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/system_root/system/etc; \
Captain Throwback76711402021-11-18 16:48:05 -0500538 cp -f $(TARGET_OUT_ETC)/event-log-tags $(TARGET_RECOVERY_ROOT_OUT)/system_root/system/etc/;
Captain Throwbackd3cdfc92020-12-27 20:23:04 -0500539 else
540 LOCAL_POST_INSTALL_CMD += \
Captain Throwback60642f02021-11-22 17:32:44 -0500541 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/system/etc; \
Captain Throwback76711402021-11-18 16:48:05 -0500542 cp -f $(TARGET_OUT_ETC)/event-log-tags $(TARGET_RECOVERY_ROOT_OUT)/system/etc/;
Captain Throwbackd3cdfc92020-12-27 20:23:04 -0500543 endif
Captain Throwback4165cc62020-11-05 13:44:56 -0500544 endif
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600545 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500546endif
Captain Throwback2f7afe12021-01-30 11:46:11 -0500547ifneq ($(TW_EXCLUDE_TZDATA), true)
548 TWRP_REQUIRED_MODULES += tzdata_twrp
549endif
nebrassyd3242eb2021-02-12 23:36:44 +0100550ifneq ($(TW_EXCLUDE_NANO), true)
551 TWRP_REQUIRED_MODULES += \
552 nano_twrp \
553 init.recovery.nano.rc
554endif
DarthJabba98ed56152021-02-20 19:17:01 -0500555ifneq ($(TW_EXCLUDE_BASH), true)
556 ifneq ($(wildcard external/bash/.),)
557 TWRP_REQUIRED_MODULES += \
558 bash_twrp
559 endif
560endif
Matt Mower031163b2014-11-01 15:13:03 -0500561# Allow devices to specify device-specific recovery dependencies
562ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500563 TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500564endif
Dees Troy3454ade2015-01-20 19:21:04 +0000565LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
566LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500567ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400568ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500569 TWRP_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500570 mount.ntfs \
571 fsck.ntfs \
572 mkfs.ntfs
573else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500574 TWRP_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500575 ntfs-3g \
576 ntfsfix \
577 mkntfs
578endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500579endif
Matt Mower58294912015-12-10 11:54:28 -0600580ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
581ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500582 TWRP_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600583 fsck.f2fs \
584 mkfs.f2fs
585endif
Ethan Yonker93382822018-11-01 15:25:31 -0500586ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500587 TWRP_REQUIRED_MODULES += sload.f2fs
Ethan Yonker93382822018-11-01 15:25:31 -0500588endif
Matt Mower58294912015-12-10 11:54:28 -0600589endif
Matt Mower031163b2014-11-01 15:13:03 -0500590
Captain Throwback8d70eb62019-11-12 09:57:29 -0500591ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
592 TWRP_REQUIRED_MODULES += ld.config.txt
Martin Dünkelmannc630b382019-12-30 15:19:03 +0100593 TWRP_REQUIRED_MODULES += init.recovery.ldconfig.rc
594 LOCAL_POST_INSTALL_CMD += \
595 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
596 $(TARGET_OUT_ETC)/ld.config*.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
Captain Throwback8d70eb62019-11-12 09:57:29 -0500597endif
598
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500599ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
600 TWRP_REQUIRED_MODULES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600601endif
602
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500603ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
604 ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
605 TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh
606 endif
607endif
608
609ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
610 LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES)
611else
612 LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES)
Mark Salyzyn13aca592016-03-09 14:58:16 -0800613endif
614
Captain Throwback4dee05a2022-01-29 15:58:53 -0500615TW_THEME_VERSION := $(shell grep TW_THEME_VERSION bootable/recovery/variables.h | cut -d ' ' -f 3)
Captain Throwbackacb6c5f2022-01-29 12:45:35 -0500616
617LOCAL_POST_INSTALL_CMD += \
618 sed -i "s/{themeversion}/$(TW_THEME_VERSION)/" $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)splash.xml; \
619 sed -i "s/{themeversion}/$(TW_THEME_VERSION)/" $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)ui.xml;
620
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800621include $(BUILD_EXECUTABLE)
622
Matt Mowerd821c962017-02-15 12:36:18 -0600623# Symlink for file_contexts
624include $(CLEAR_VARS)
625
Captain Throwback3184b2f2017-03-07 12:07:40 -0500626LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600627LOCAL_MODULE_TAGS := optional
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500628ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
629 LOCAL_REQUIRED_MODULES := file_contexts.bin
630else
631 LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin
632endif
Captain Throwback4165cc62020-11-05 13:44:56 -0500633LOCAL_POST_INSTALL_CMD += \
Captain Throwback60642f02021-11-22 17:32:44 -0500634 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 -0600635
636include $(BUILD_PHONY_PACKAGE)
637
Ethan Yonker5c933692014-04-04 11:26:32 -0500638ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800639include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400640# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
641BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600642exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500643
Ethan Yonkera60c7862016-02-25 15:32:06 -0600644# Having /sbin/modprobe present on 32 bit devices with can cause a massive
645# performance problem if the kernel has CONFIG_MODULES=y
646ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
647 ifneq ($(TARGET_ARCH), arm64)
648 ifneq ($(TARGET_ARCH), x86_64)
649 exclude += modprobe
650 endif
651 endif
652endif
653
Matt Mower81742fb2014-09-01 14:40:52 -0500654# If busybox does not have restorecon, assume it does not have SELinux support.
655# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600656ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
657 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000658endif
Matt Mower81742fb2014-09-01 14:40:52 -0500659
660RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
661RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400662$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
663$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
664 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
665 @mkdir -p $(dir $@)
666 @rm -rf $@
667 $(hide) ln -sf $(BUSYBOX_BINARY) $@
668
Matt Mower031163b2014-11-01 15:13:03 -0500669include $(CLEAR_VARS)
670LOCAL_MODULE := busybox_symlinks
671LOCAL_MODULE_TAGS := optional
672LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000673ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
674ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
675endif
Matt Mower031163b2014-11-01 15:13:03 -0500676include $(BUILD_PHONY_PACKAGE)
677RECOVERY_BUSYBOX_SYMLINKS :=
678endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400679
Mark Salyzyn13aca592016-03-09 14:58:16 -0800680# recovery-persist (system partition dynamic executable run after /data mounts)
681# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500682ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
683 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500684 LOCAL_SRC_FILES := \
685 recovery-persist.cpp \
686 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500687 LOCAL_MODULE := recovery-persist
688 LOCAL_SHARED_LIBRARIES := liblog libbase
689 LOCAL_CFLAGS := -Werror
690 LOCAL_INIT_RC := recovery-persist.rc
691 include $(BUILD_EXECUTABLE)
692endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800693
Mark Salyzyn13aca592016-03-09 14:58:16 -0800694# recovery-refresh (system partition dynamic executable run at init)
695# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500696ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
697 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500698 LOCAL_SRC_FILES := \
699 recovery-refresh.cpp \
700 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500701 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500702 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500703 LOCAL_CFLAGS := -Werror
704 LOCAL_INIT_RC := recovery-refresh.rc
705 include $(BUILD_EXECUTABLE)
706endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800707
Ethan Yonker34ae4832016-08-24 15:32:18 -0500708# shared libfusesideload
709# ===============================
710include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500711LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500712LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500713LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
714
715LOCAL_MODULE_TAGS := optional
716LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500717LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500718ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500719 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
720 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
721 LOCAL_CFLAGS += -DUSE_MINCRYPT
722else
723 LOCAL_SHARED_LIBRARIES += libcrypto
724endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500725ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
726 LOCAL_SRC_FILES := fuse_sideload22.cpp
727 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
728else
729 LOCAL_SRC_FILES := fuse_sideload.cpp
730endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500731include $(BUILD_SHARED_LIBRARY)
732
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600733# static libfusesideload
734# =============================== (required to fix build errors in 8.1 due to use by tests)
735include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600736LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500737LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600738LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
739
740LOCAL_MODULE_TAGS := optional
741LOCAL_MODULE := libfusesideload
742LOCAL_SHARED_LIBRARIES := libcutils libc
743ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
744 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
745 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
746 LOCAL_CFLAGS += -DUSE_MINCRYPT
747else
748 LOCAL_STATIC_LIBRARIES += libcrypto_static
749endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500750ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
751 LOCAL_SRC_FILES := fuse_sideload22.cpp
752 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
753else
754 LOCAL_SRC_FILES := fuse_sideload.cpp
755endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800756include $(BUILD_STATIC_LIBRARY)
757
Elliott Hughes63a31922016-06-09 17:41:22 -0700758# libmounts (static library)
759# ===============================
760include $(CLEAR_VARS)
761LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700762LOCAL_CFLAGS := \
763 -Wall \
764 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700765LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700766LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700767include $(BUILD_STATIC_LIBRARY)
768
Tao Bao62e0bc72017-04-10 16:55:57 -0700769# librecovery (static library)
770# ===============================
771include $(CLEAR_VARS)
772LOCAL_SRC_FILES := \
773 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700774LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700775LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700776
777ifeq ($(AB_OTA_UPDATER),true)
778 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
779endif
780
Tao Bao62e0bc72017-04-10 16:55:57 -0700781LOCAL_MODULE := librecovery
782LOCAL_STATIC_LIBRARIES := \
783 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700784 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700785 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700786 libcrypto_utils \
787 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700788 libbase \
789 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700790
791include $(BUILD_STATIC_LIBRARY)
792
Ethan Yonker34ae4832016-08-24 15:32:18 -0500793# shared libaosprecovery for Apache code
794# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000795include $(CLEAR_VARS)
796
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800797
Dees_Troy2673cec2013-04-02 20:22:16 +0000798LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500799LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500800LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500801LOCAL_SRC_FILES := adb_install.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp installcommand.cpp zipwrap.cpp
Ethan Yonker941a8992016-12-05 09:04:30 -0600802LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
803LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500804ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500805 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600806 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500807 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500808else
809 LOCAL_SHARED_LIBRARIES += libc++
810endif
811ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
812 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600813 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500814 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500815 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
816else
Ethan Yonker941a8992016-12-05 09:04:30 -0600817 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500818 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500819 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500820endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700821
Ethan Yonker941a8992016-12-05 09:04:30 -0600822ifeq ($(AB_OTA_UPDATER),true)
823 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
824endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500825ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500826 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500827 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
828 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500829 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
830 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
831 # Android 9.0 needs c++17 for libvintf
832 LOCAL_CPPFLAGS += -std=c++17
833 # Android 9.0's libvintf also needs this library
834 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
835 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800836else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500837 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800838endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000839
840include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800841# libverifier (static library)
842# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700843include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700844LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700845LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700846LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700847 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700848 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800849LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700850 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800851 libcrypto_utils \
852 libcrypto \
853 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700854LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800855include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800856
Tao Bao016120f2017-08-02 17:11:04 -0700857# Wear default device
858# ===============================
859include $(CLEAR_VARS)
860LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700861LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700862
863# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
864LOCAL_MODULE := librecovery_ui_wear
865
866include $(BUILD_STATIC_LIBRARY)
867
Luke Songa44dba72017-06-12 16:08:33 -0700868# vr headset default device
869# ===============================
870include $(CLEAR_VARS)
871
872LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700873LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700874
875# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
876LOCAL_MODULE := librecovery_ui_vr
877
878include $(BUILD_STATIC_LIBRARY)
879
Dees_Troy51a0e822012-09-05 15:24:24 -0400880commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600881
Ethan Yonker58f21322018-08-24 11:17:36 -0500882# $(LOCAL_PATH)/edify/Android.mk
883# $(LOCAL_PATH)/otafault/Android.mk
884# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700885include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500886 $(commands_TWRP_local_path)/boot_control/Android.mk \
887 $(commands_TWRP_local_path)/tests/Android.mk \
888 $(commands_TWRP_local_path)/tools/Android.mk \
889 $(commands_TWRP_local_path)/updater/Android.mk \
890 $(commands_TWRP_local_path)/update_verifier/Android.mk \
891 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
892
893ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
894include $(commands_TWRP_local_path)/bootloader_message/Android.mk
895endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400896
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500897ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
898 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
899else
900 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
901endif
902
Matt Mowerf746dbb2015-05-13 22:56:31 -0500903ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500904 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500905endif
906
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500907ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500908 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
909 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
910 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
911 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500912 include $(commands_TWRP_local_path)/minadbd/Android.mk \
913 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500914else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500915 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500916 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
917 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500918endif
919
Ethan Yonker58f21322018-08-24 11:17:36 -0500920#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400921#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500922include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
923 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
924 $(commands_TWRP_local_path)/gui/Android.mk \
925 $(commands_TWRP_local_path)/mmcutils/Android.mk \
926 $(commands_TWRP_local_path)/bmlutils/Android.mk \
927 $(commands_TWRP_local_path)/prebuilt/Android.mk \
928 $(commands_TWRP_local_path)/mtdutils/Android.mk \
929 $(commands_TWRP_local_path)/flashutils/Android.mk \
930 $(commands_TWRP_local_path)/pigz/Android.mk \
931 $(commands_TWRP_local_path)/libtar/Android.mk \
932 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
933 $(commands_TWRP_local_path)/libblkid/Android.mk \
934 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
935 $(commands_TWRP_local_path)/openaes/Android.mk \
936 $(commands_TWRP_local_path)/toolbox/Android.mk \
937 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500938 $(commands_TWRP_local_path)/minzip/Android.mk \
939 $(commands_TWRP_local_path)/dosfstools/Android.mk \
940 $(commands_TWRP_local_path)/etc/Android.mk \
941 $(commands_TWRP_local_path)/toybox/Android.mk \
942 $(commands_TWRP_local_path)/simg2img/Android.mk \
943 $(commands_TWRP_local_path)/adbbu/Android.mk \
944 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
945 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
946 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600947
Ethan Yonker534d4e02016-08-26 10:05:03 -0500948ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500949 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500950endif
951
mauronofrio0ff59842019-10-26 19:47:55 +0200952ifneq ($(TW_OZIP_DECRYPT_KEY),)
953 TWRP_REQUIRED_MODULES += ozip_decrypt
954 include $(commands_TWRP_local_path)/ozip_decrypt/Android.mk
955endif
956
Ethan Yonker253368a2014-11-25 15:00:52 -0600957ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500958 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500959 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600960 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500961 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600962 endif
nkk7171c6c502017-01-05 23:55:05 +0200963 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
964 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500965 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200966 endif
967 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500968 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600969endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100970ifeq ($(BUILD_ID), GINGERBREAD)
971 TW_NO_EXFAT := true
972endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000973ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500974 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
975 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
976 $(commands_TWRP_local_path)/fuse/Android.mk \
977 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600978 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500979 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600980 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400981endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500982ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500983 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500984endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500985
Talustus3019a912013-04-06 11:50:07 +0200986# FB2PNG
987ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500988 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200989endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500990
Matt Mower55c75ca2014-08-31 11:30:15 -0500991endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500992
993commands_TWRP_local_path :=