blob: f5821cc9e25810f15f1d341a0824cec98c23f948 [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
Dees_Troy51a0e822012-09-05 15:24:24 -040086#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080087
Ethan Yonker34ae4832016-08-24 15:32:18 -050088#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060089#ifeq ($(HOST_OS),linux)
90#LOCAL_REQUIRED_MODULES := mkfs.f2fs
91#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050092#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070093
Doug Zongkere08991e2010-02-02 13:09:52 -080094RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080095RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070096LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080097LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070098LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070099
Dees_Troy51a0e822012-09-05 15:24:24 -0400100#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +0000101# libext4_utils_static \
102# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -0400103# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +0000104# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -0400105# libmtdutils \
106# libmincrypt \
107# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +0000108# libminui \
109# libpixelflinger_static \
110# libpng \
111# libfs_mgr \
112# libcutils \
113# liblog \
114# libselinux \
115# libstdc++ \
116# libm \
117# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400118
Dan Albert1ddd3502015-02-18 15:58:15 -0800119LOCAL_C_INCLUDES += \
120 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500121 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800122 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500123 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500124 external/zlib \
125 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100126
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400127LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800128ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400129 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500130 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400131else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500132 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800133endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400134
135LOCAL_STATIC_LIBRARIES :=
136LOCAL_SHARED_LIBRARIES :=
137
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600138LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500139LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
140LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500141
Xing0af1ac12015-11-27 11:19:37 -0800142ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500143 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400144 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500145endif
Mohd Faraze8f7ea32020-06-12 20:38:58 +0530146LOCAL_CFLAGS += -DSDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbifff62d2492020-05-20 10:15:34 -0400147ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 25; echo $$?),0)
148 LOCAL_CFLAGS += -DUSE_OLD_BASE_INCLUDE
149endif
Ethan Yonker534d4e02016-08-26 10:05:03 -0500150ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
151 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500152 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
153 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500154else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500155 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500156endif
157
Mohd Faraz0d9a62e2020-02-20 00:10:26 +0530158ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 23; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500159 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500160endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700161
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500162ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
163 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500164 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500165else
166 LOCAL_SHARED_LIBRARIES += libminzip
167 LOCAL_CFLAGS += -DUSE_MINZIP
168endif
169
Dees_Troy4546fe72013-01-10 14:33:27 +0000170ifneq ($(wildcard system/core/libsparse/Android.mk),)
171LOCAL_SHARED_LIBRARIES += libsparse
172endif
173
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500174ifeq ($(TW_OEM_BUILD),true)
175 LOCAL_CFLAGS += -DTW_OEM_BUILD
176 BOARD_HAS_NO_REAL_SDCARD := true
177 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400178 TW_EXCLUDE_MTP := true
Captain Throwback2f7afe12021-01-30 11:46:11 -0500179 TW_EXCLUDE_TZDATA := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500180endif
Yabin Cui99281df2016-02-17 12:21:52 -0800181
Doug Zongker49c73a72010-06-29 17:36:28 -0700182ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500183 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
184 LOCAL_CFLAGS += -DUSE_EXT4
bigbiffa2bd7b72020-05-07 21:45:34 -0400185 endif
186 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 28; echo $$?),0)
187 LOCAL_C_INCLUDES += system/extras/ext4_utils \
188 system/extras/ext4_utils/include \
bigbiff186eb702020-06-08 15:59:32 -0400189 $(commands_TWRP_local_path)/crypto/ext4crypt
Ethan Yonker58f21322018-08-24 11:17:36 -0500190 LOCAL_SHARED_LIBRARIES += libext4_utils
191 ifneq ($(wildcard external/lz4/Android.mk),)
192 #LOCAL_STATIC_LIBRARIES += liblz4
193 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700194 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700195endif
Matt Mower87413642017-01-17 21:14:46 -0600196LOCAL_C_INCLUDES += external/libselinux/include
197LOCAL_SHARED_LIBRARIES += libselinux
Doug Zongker49c73a72010-06-29 17:36:28 -0700198
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700199ifeq ($(AB_OTA_UPDATER),true)
200 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500201 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500202 TWRP_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700203endif
204
Ying Wang5a50b1b2015-03-10 11:56:56 -0700205LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800206
Dees_Troy1669f892013-09-04 18:35:08 +0000207#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500208# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000209#else
210# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
211#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500212ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
213 LOCAL_SRC_FILES += BasePartition.cpp
214else
215 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
216endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800217
that0e2140e2016-08-10 21:04:26 +0200218tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
219ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
220 tw_git_revision := $(tw_git_revision)-dirty
221endif
222LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
223
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500224ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
mauronofrio8ff93eb2020-03-16 14:59:39 +0000225ifeq ($(TW_FORCE_USE_BUSYBOX), true)
226 TW_USE_TOOLBOX := false
227else
228 TW_USE_TOOLBOX := true
229endif
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500230ifeq ($(TW_EXCLUDE_MTP),)
231 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
232endif
233else
234ifeq ($(TW_EXCLUDE_MTP),)
235 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
236 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
237endif
238endif
239
Dees_Troy51a0e822012-09-05 15:24:24 -0400240#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400241ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400242 LOCAL_CFLAGS += -DTW_HAS_MTP
243endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700244ifneq ($(TW_NO_SCREEN_TIMEOUT),)
245 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
246endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400247ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
248 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
249endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400250ifneq ($(RECOVERY_SDCARD_ON_DATA),)
251 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
252endif
253ifneq ($(TW_INCLUDE_DUMLOCK),)
254 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
255endif
256ifneq ($(TW_INTERNAL_STORAGE_PATH),)
257 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
258endif
259ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
260 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
261endif
262ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
263 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
264endif
265ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
266 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
267endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530268ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
269 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
270endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400271ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
272 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
273endif
274ifeq ($(TW_NO_REBOOT_RECOVERY), true)
275 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
276endif
277ifeq ($(TW_NO_BATT_PERCENT), true)
278 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
279endif
Jenkins1710bf22014-10-02 20:22:21 -0400280ifeq ($(TW_NO_CPU_TEMP), true)
281 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
282endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400283ifneq ($(TW_CUSTOM_POWER_BUTTON),)
284 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
285endif
286ifeq ($(TW_ALWAYS_RMRF), true)
287 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
288endif
289ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
290 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
291endif
292ifeq ($(TW_NO_USB_STORAGE), true)
293 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
294endif
295ifeq ($(TW_INCLUDE_INJECTTWRP), true)
296 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
297endif
298ifeq ($(TW_INCLUDE_BLOBPACK), true)
299 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
300endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400301ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
302 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
303endif
304ifneq ($(BOARD_UMS_LUNFILE),)
305 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
306endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400307ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
308 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
309endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200310ifeq ($(TW_HAS_EDL_MODE), true)
311 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
312endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500313ifeq ($(TW_NO_SCREEN_BLANK), true)
314 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
315endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400316ifeq ($(TW_SDEXT_NO_EXT4), true)
317 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
318endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400319ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
320 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
321endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000322ifeq ($(TW_NO_EXFAT_FUSE), true)
323 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
324endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400325ifeq ($(TW_NO_HAPTICS), true)
326 LOCAL_CFLAGS += -DTW_NO_HAPTICS
327endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400328ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600329 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400330endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600331ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600332 TW_INCLUDE_CRYPTO := true
333endif
334ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600335 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500336 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500337 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600338 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
339 TW_INCLUDE_CRYPTO_FBE := true
340 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
341 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500342 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
343 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
344 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600345 endif
nkk7171c6c502017-01-05 23:55:05 +0200346 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
347 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Captain Throwback3284a662020-02-04 15:34:06 -0500348 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
349 TW_INCLUDE_LIBRESETPROP := true
350 endif
nkk7171c6c502017-01-05 23:55:05 +0200351 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
352 LOCAL_STATIC_LIBRARIES += libvolddecrypt
353 endif
354 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600355endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500356WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500357 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700358ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
359 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
360endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200361ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
362 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
363endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600364ifneq ($(TW_BRIGHTNESS_PATH),)
365 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
366endif
xNUTxe85f02d2014-07-18 01:30:58 +0200367ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
368 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
369endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600370ifneq ($(TW_MAX_BRIGHTNESS),)
371 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
372endif
Greg Wallace36ade452015-11-08 13:54:25 -0500373ifneq ($(TW_DEFAULT_BRIGHTNESS),)
374 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
375endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000376ifneq ($(TW_CUSTOM_BATTERY_PATH),)
377 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
378endif
Jenkins1710bf22014-10-02 20:22:21 -0400379ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
380 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
381endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000382ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
383 LOCAL_SHARED_LIBRARIES += libopenaes
384else
385 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
386endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100387ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300388 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
389 LOCAL_CFLAGS += -DQCOM_RTC_FIX
390 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100391 LOCAL_CFLAGS += -DQCOM_RTC_FIX
392 endif
393else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
394 LOCAL_CFLAGS += -DQCOM_RTC_FIX
395endif
Matt Mower6883d732014-03-20 17:28:13 -0500396ifneq ($(TW_NO_LEGACY_PROPS),)
397 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
398endif
Dees Troy4159aed2014-02-28 17:24:43 +0000399ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
400 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
401endif
Matt Mowerec009e82015-01-30 13:00:49 -0600402ifneq ($(TARGET_RECOVERY_INITRC),)
403 TW_EXCLUDE_DEFAULT_USB_INIT := true
404endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500405ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
406 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
407endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500408ifneq ($(TW_DEFAULT_LANGUAGE),)
409 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
410else
411 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
412endif
Phoenix591e444d112018-02-03 07:23:54 +0000413ifneq ($(TW_CLOCK_OFFSET),)
414 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
415endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100416ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),)
417 TW_INCLUDE_LIBRESETPROP := true
418 LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS)
419endif
420ifneq ($(TW_INCLUDE_LIBRESETPROP),)
Chaosmaster97c45412020-02-15 19:11:45 +0100421 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
422 $(warning libresetprop is not available for android < 7)
423 else
424 LOCAL_SHARED_LIBRARIES += libresetprop
425 LOCAL_C_INCLUDES += external/magisk-prebuilt/include
426 LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP
427 endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100428endif
429
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500430TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500431 dump_image \
432 erase_image \
433 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500434 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500435 pigz \
436 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500437 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500438 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600439 fsck.fat \
440 fatlabel \
441 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500442 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500443 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500444 libbootloader_message_twrp \
445 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500446 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500447
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600448ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500449 ifneq ($(TARGET_ARCH), x86_64)
450 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
451 else
452 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
453 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600454else
455 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600456endif
457ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600458 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Captain Throwback4165cc62020-11-05 13:44:56 -0500459 LOCAL_POST_INSTALL_CMD += \
Matt Mower84057612017-01-08 13:32:18 -0600460 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
461 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
462 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500463else
464 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500465 TWRP_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500466 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800467 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500468 TWRP_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800469 endif
470 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500471 TWRP_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800472 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600473endif
Matt Mower84057612017-01-08 13:32:18 -0600474
Matt Mower20172792014-11-14 10:54:03 -0600475ifneq ($(TW_NO_EXFAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500476 TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600477 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500478 TWRP_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600479 endif
Matt Mower20172792014-11-14 10:54:03 -0600480endif
Matt Mower031163b2014-11-01 15:13:03 -0500481ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600482 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500483 TWRP_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600484 else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500485 TWRP_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600486 endif
Matt Mower031163b2014-11-01 15:13:03 -0500487endif
488ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500489 TWRP_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500490endif
491ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500492 TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500493 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
494 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
495endif
Matt Mower031163b2014-11-01 15:13:03 -0500496ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500497 TWRP_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500498endif
499ifneq ($(TW_OEM_BUILD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500500 TWRP_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500501endif
502ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500503 TWRP_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500504endif
505ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500506 TWRP_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500507endif
Matt Mowerec009e82015-01-30 13:00:49 -0600508ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500509 TWRP_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600510endif
Captain Throwback1f127752016-01-19 17:30:20 -0500511ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500512 TWRP_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600513 ifeq ($(TARGET_USES_LOGD), true)
Captain Throwbackd3cdfc92020-12-27 20:23:04 -0500514 TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
515 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
516 TWRP_REQUIRED_MODULES += event-log-tags
517 ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true)
518 LOCAL_POST_INSTALL_CMD += \
519 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/system_root/system/etc; \
520 cp $(TARGET_OUT_ETC)/event-log-tags $(TARGET_RECOVERY_ROOT_OUT)/system_root/system/etc/;
521 else
522 LOCAL_POST_INSTALL_CMD += \
523 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/system/etc; \
524 cp $(TARGET_OUT_ETC)/event-log-tags $(TARGET_RECOVERY_ROOT_OUT)/system/etc/;
525 endif
Captain Throwback4165cc62020-11-05 13:44:56 -0500526 endif
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600527 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500528endif
Captain Throwback2f7afe12021-01-30 11:46:11 -0500529ifneq ($(TW_EXCLUDE_TZDATA), true)
530 TWRP_REQUIRED_MODULES += tzdata_twrp
531endif
Matt Mower031163b2014-11-01 15:13:03 -0500532# Allow devices to specify device-specific recovery dependencies
533ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500534 TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500535endif
Dees Troy3454ade2015-01-20 19:21:04 +0000536LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
537LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500538ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400539ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500540 TWRP_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500541 mount.ntfs \
542 fsck.ntfs \
543 mkfs.ntfs
544else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500545 TWRP_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500546 ntfs-3g \
547 ntfsfix \
548 mkntfs
549endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500550endif
Matt Mower58294912015-12-10 11:54:28 -0600551ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
552ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500553 TWRP_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600554 fsck.f2fs \
555 mkfs.f2fs
556endif
Ethan Yonker93382822018-11-01 15:25:31 -0500557ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500558 TWRP_REQUIRED_MODULES += sload.f2fs
Ethan Yonker93382822018-11-01 15:25:31 -0500559endif
Matt Mower58294912015-12-10 11:54:28 -0600560endif
Matt Mower031163b2014-11-01 15:13:03 -0500561
Captain Throwback8d70eb62019-11-12 09:57:29 -0500562ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
563 TWRP_REQUIRED_MODULES += ld.config.txt
Martin Dünkelmannc630b382019-12-30 15:19:03 +0100564 TWRP_REQUIRED_MODULES += init.recovery.ldconfig.rc
565 LOCAL_POST_INSTALL_CMD += \
566 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
567 $(TARGET_OUT_ETC)/ld.config*.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
Captain Throwback8d70eb62019-11-12 09:57:29 -0500568endif
569
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500570ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
571 TWRP_REQUIRED_MODULES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600572endif
573
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500574ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
575 ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
576 TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh
577 endif
578endif
579
580ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
581 LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES)
582else
583 LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES)
Mark Salyzyn13aca592016-03-09 14:58:16 -0800584endif
585
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800586include $(BUILD_EXECUTABLE)
587
Matt Mowerd821c962017-02-15 12:36:18 -0600588# Symlink for file_contexts
589include $(CLEAR_VARS)
590
Captain Throwback3184b2f2017-03-07 12:07:40 -0500591LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600592LOCAL_MODULE_TAGS := optional
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500593ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
594 LOCAL_REQUIRED_MODULES := file_contexts.bin
595else
596 LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin
597endif
Captain Throwback4165cc62020-11-05 13:44:56 -0500598LOCAL_POST_INSTALL_CMD += \
Ethan Yonker58f21322018-08-24 11:17:36 -0500599 $(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 -0600600
601include $(BUILD_PHONY_PACKAGE)
602
Ethan Yonker5c933692014-04-04 11:26:32 -0500603ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800604include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400605# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
606BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600607exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500608
Ethan Yonkera60c7862016-02-25 15:32:06 -0600609# Having /sbin/modprobe present on 32 bit devices with can cause a massive
610# performance problem if the kernel has CONFIG_MODULES=y
611ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
612 ifneq ($(TARGET_ARCH), arm64)
613 ifneq ($(TARGET_ARCH), x86_64)
614 exclude += modprobe
615 endif
616 endif
617endif
618
Matt Mower81742fb2014-09-01 14:40:52 -0500619# If busybox does not have restorecon, assume it does not have SELinux support.
620# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600621ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
622 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000623endif
Matt Mower81742fb2014-09-01 14:40:52 -0500624
625RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
626RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400627$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
628$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
629 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
630 @mkdir -p $(dir $@)
631 @rm -rf $@
632 $(hide) ln -sf $(BUSYBOX_BINARY) $@
633
Matt Mower031163b2014-11-01 15:13:03 -0500634include $(CLEAR_VARS)
635LOCAL_MODULE := busybox_symlinks
636LOCAL_MODULE_TAGS := optional
637LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000638ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
639ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
640endif
Matt Mower031163b2014-11-01 15:13:03 -0500641include $(BUILD_PHONY_PACKAGE)
642RECOVERY_BUSYBOX_SYMLINKS :=
643endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400644
Mark Salyzyn13aca592016-03-09 14:58:16 -0800645# recovery-persist (system partition dynamic executable run after /data mounts)
646# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500647ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
648 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500649 LOCAL_SRC_FILES := \
650 recovery-persist.cpp \
651 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500652 LOCAL_MODULE := recovery-persist
653 LOCAL_SHARED_LIBRARIES := liblog libbase
654 LOCAL_CFLAGS := -Werror
655 LOCAL_INIT_RC := recovery-persist.rc
656 include $(BUILD_EXECUTABLE)
657endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800658
Mark Salyzyn13aca592016-03-09 14:58:16 -0800659# recovery-refresh (system partition dynamic executable run at init)
660# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500661ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
662 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500663 LOCAL_SRC_FILES := \
664 recovery-refresh.cpp \
665 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500666 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500667 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500668 LOCAL_CFLAGS := -Werror
669 LOCAL_INIT_RC := recovery-refresh.rc
670 include $(BUILD_EXECUTABLE)
671endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800672
Ethan Yonker34ae4832016-08-24 15:32:18 -0500673# shared libfusesideload
674# ===============================
675include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500676LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500677LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500678LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
679
680LOCAL_MODULE_TAGS := optional
681LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500682LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500683ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500684 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
685 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
686 LOCAL_CFLAGS += -DUSE_MINCRYPT
687else
688 LOCAL_SHARED_LIBRARIES += libcrypto
689endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500690ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
691 LOCAL_SRC_FILES := fuse_sideload22.cpp
692 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
693else
694 LOCAL_SRC_FILES := fuse_sideload.cpp
695endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500696include $(BUILD_SHARED_LIBRARY)
697
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600698# static libfusesideload
699# =============================== (required to fix build errors in 8.1 due to use by tests)
700include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600701LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500702LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600703LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
704
705LOCAL_MODULE_TAGS := optional
706LOCAL_MODULE := libfusesideload
707LOCAL_SHARED_LIBRARIES := libcutils libc
708ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
709 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
710 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
711 LOCAL_CFLAGS += -DUSE_MINCRYPT
712else
713 LOCAL_STATIC_LIBRARIES += libcrypto_static
714endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500715ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
716 LOCAL_SRC_FILES := fuse_sideload22.cpp
717 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
718else
719 LOCAL_SRC_FILES := fuse_sideload.cpp
720endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800721include $(BUILD_STATIC_LIBRARY)
722
Elliott Hughes63a31922016-06-09 17:41:22 -0700723# libmounts (static library)
724# ===============================
725include $(CLEAR_VARS)
726LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700727LOCAL_CFLAGS := \
728 -Wall \
729 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700730LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700731LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700732include $(BUILD_STATIC_LIBRARY)
733
Tao Bao62e0bc72017-04-10 16:55:57 -0700734# librecovery (static library)
735# ===============================
736include $(CLEAR_VARS)
737LOCAL_SRC_FILES := \
738 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700739LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700740LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700741
742ifeq ($(AB_OTA_UPDATER),true)
743 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
744endif
745
Tao Bao62e0bc72017-04-10 16:55:57 -0700746LOCAL_MODULE := librecovery
747LOCAL_STATIC_LIBRARIES := \
748 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700749 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700750 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700751 libcrypto_utils \
752 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700753 libbase \
754 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700755
756include $(BUILD_STATIC_LIBRARY)
757
Ethan Yonker34ae4832016-08-24 15:32:18 -0500758# shared libaosprecovery for Apache code
759# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000760include $(CLEAR_VARS)
761
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800762
Dees_Troy2673cec2013-04-02 20:22:16 +0000763LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500764LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500765LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500766LOCAL_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 -0600767LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
768LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500769ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500770 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600771 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500772 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500773else
774 LOCAL_SHARED_LIBRARIES += libc++
775endif
776ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
777 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600778 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500779 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500780 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
781else
Ethan Yonker941a8992016-12-05 09:04:30 -0600782 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500783 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500784 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500785endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700786
Ethan Yonker941a8992016-12-05 09:04:30 -0600787ifeq ($(AB_OTA_UPDATER),true)
788 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
789endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500790ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500791 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500792 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
793 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500794 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
795 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
796 # Android 9.0 needs c++17 for libvintf
797 LOCAL_CPPFLAGS += -std=c++17
798 # Android 9.0's libvintf also needs this library
799 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
800 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800801else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500802 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800803endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000804
805include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800806# libverifier (static library)
807# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700808include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700809LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700810LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700811LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700812 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700813 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800814LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700815 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800816 libcrypto_utils \
817 libcrypto \
818 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700819LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800820include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800821
Tao Bao016120f2017-08-02 17:11:04 -0700822# Wear default device
823# ===============================
824include $(CLEAR_VARS)
825LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700826LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700827
828# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
829LOCAL_MODULE := librecovery_ui_wear
830
831include $(BUILD_STATIC_LIBRARY)
832
Luke Songa44dba72017-06-12 16:08:33 -0700833# vr headset default device
834# ===============================
835include $(CLEAR_VARS)
836
837LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700838LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700839
840# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
841LOCAL_MODULE := librecovery_ui_vr
842
843include $(BUILD_STATIC_LIBRARY)
844
Dees_Troy51a0e822012-09-05 15:24:24 -0400845commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600846
Ethan Yonker58f21322018-08-24 11:17:36 -0500847# $(LOCAL_PATH)/edify/Android.mk
848# $(LOCAL_PATH)/otafault/Android.mk
849# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700850include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500851 $(commands_TWRP_local_path)/boot_control/Android.mk \
852 $(commands_TWRP_local_path)/tests/Android.mk \
853 $(commands_TWRP_local_path)/tools/Android.mk \
854 $(commands_TWRP_local_path)/updater/Android.mk \
855 $(commands_TWRP_local_path)/update_verifier/Android.mk \
856 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
857
858ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
859include $(commands_TWRP_local_path)/bootloader_message/Android.mk
860endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400861
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500862ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
863 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
864else
865 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
866endif
867
Matt Mowerf746dbb2015-05-13 22:56:31 -0500868ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500869 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500870endif
871
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500872ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500873 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
874 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
875 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
876 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500877 include $(commands_TWRP_local_path)/minadbd/Android.mk \
878 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500879else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500880 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500881 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
882 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500883endif
884
Ethan Yonker58f21322018-08-24 11:17:36 -0500885#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400886#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500887include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
888 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
889 $(commands_TWRP_local_path)/gui/Android.mk \
890 $(commands_TWRP_local_path)/mmcutils/Android.mk \
891 $(commands_TWRP_local_path)/bmlutils/Android.mk \
892 $(commands_TWRP_local_path)/prebuilt/Android.mk \
893 $(commands_TWRP_local_path)/mtdutils/Android.mk \
894 $(commands_TWRP_local_path)/flashutils/Android.mk \
895 $(commands_TWRP_local_path)/pigz/Android.mk \
896 $(commands_TWRP_local_path)/libtar/Android.mk \
897 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
898 $(commands_TWRP_local_path)/libblkid/Android.mk \
899 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
900 $(commands_TWRP_local_path)/openaes/Android.mk \
901 $(commands_TWRP_local_path)/toolbox/Android.mk \
902 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500903 $(commands_TWRP_local_path)/minzip/Android.mk \
904 $(commands_TWRP_local_path)/dosfstools/Android.mk \
905 $(commands_TWRP_local_path)/etc/Android.mk \
906 $(commands_TWRP_local_path)/toybox/Android.mk \
907 $(commands_TWRP_local_path)/simg2img/Android.mk \
908 $(commands_TWRP_local_path)/adbbu/Android.mk \
909 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
910 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
911 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600912
Ethan Yonker534d4e02016-08-26 10:05:03 -0500913ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500914 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500915endif
916
mauronofrio0ff59842019-10-26 19:47:55 +0200917ifneq ($(TW_OZIP_DECRYPT_KEY),)
918 TWRP_REQUIRED_MODULES += ozip_decrypt
919 include $(commands_TWRP_local_path)/ozip_decrypt/Android.mk
920endif
921
Ethan Yonker253368a2014-11-25 15:00:52 -0600922ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500923 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500924 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600925 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500926 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600927 endif
nkk7171c6c502017-01-05 23:55:05 +0200928 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
929 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500930 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200931 endif
932 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500933 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600934endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100935ifeq ($(BUILD_ID), GINGERBREAD)
936 TW_NO_EXFAT := true
937endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000938ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500939 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
940 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
941 $(commands_TWRP_local_path)/fuse/Android.mk \
942 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600943 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500944 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600945 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400946endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500947ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500948 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500949endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500950
Talustus3019a912013-04-06 11:50:07 +0200951# FB2PNG
952ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500953 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200954endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500955
Matt Mower55c75ca2014-08-31 11:30:15 -0500956endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500957
958commands_TWRP_local_path :=