blob: 0bbad69ea02222383d4c7ceb03b406c020112cf8 [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
bigbiffee7b7ff2020-03-23 15:08:27 -040055LOCAL_STATIC_LIBRARIES :=
56LOCAL_SHARED_LIBRARIES :=
57
bigbiff bigbiff584b9772016-12-08 21:21:17 -050058ifneq ($(TW_DEVICE_VERSION),)
59 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
60else
61 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
62endif
dianlujitao4879b372018-12-03 18:45:47 +080063LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbiff bigbiff584b9772016-12-08 21:21:17 -050064
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000066 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060067 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050068 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060069 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050070 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040071 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040072 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040073 partition.cpp \
74 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060075 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040076 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040077 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040078 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000079 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040080 tarWrite.c \
81 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040082
bigbiffee7b7ff2020-03-23 15:08:27 -040083ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 29; echo $$?),0)
84 LOCAL_STATIC_LIBRARIES += libavb
85 LOCAL_SHARED_LIBRARIES += libfs_mgr libinit
86 LOCAL_C_INCLUDES += \
87 system/core/fs_mgr/libfs_avb/include/ \
88 system/core/fs_mgr/include_fstab/ \
89 system/core/fs_mgr/include/ \
90 system/core/fs_mgr/libdm/include/ \
91 system/core/fs_mgr/liblp/include/ \
92 system/gsid/include/ \
93 system/core/init/
94endif
95
Dees_Troya58bead2012-09-27 09:49:29 -040096ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040097 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
98endif
99
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100LOCAL_MODULE := recovery
101
Doug Zongkere08991e2010-02-02 13:09:52 -0800102RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -0800103RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700104LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -0800105LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -0700106LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700107
Dan Albert1ddd3502015-02-18 15:58:15 -0800108LOCAL_C_INCLUDES += \
109 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500110 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800111 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500112 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500113 external/zlib \
bigbiffd58ba182020-03-23 10:02:29 -0400114 system/core/libpixelflinger/include \
115 external/freetype/include \
116 $(LOCAL_PATH)/bootloader_message_twrp/include \
117 $(LOCAL_PATH)/recovery_ui/include \
118 $(LOCAL_PATH)/otautil/include \
119 $(LOCAL_PATH)/install/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100120
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400121LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800122ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400123 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500124 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400125else
bigbiffd58ba182020-03-23 10:02:29 -0400126 ifeq ($shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
127 LOCAL_C_INCLUDES += $(LOCAL_PATH)/fuse_sideload28/
128 else
129 LOCAL_C_FLAGS += -DUSE_OLD_LOAD_KEYS
130 LOCAL_C_INCLUDES += $(LOCAL_PATH)/fuse_sideload/include \
131 $(LOCAL_PATH)/install/include
132 endif
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
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600136LOCAL_STATIC_LIBRARIES += libguitwrp
bigbiffd58ba182020-03-23 10:02:29 -0400137LOCAL_SHARED_LIBRARIES += libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
138LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++ libaosprecovery
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500139
Xing0af1ac12015-11-27 11:19:37 -0800140ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500141 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400142 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500143endif
144ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
145 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500146 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
147 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500148else
bigbiffd58ba182020-03-23 10:02:29 -0400149 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 29; echo $$?),0)
150 LOCAL_C_INCLUDES += $(LOCAL_PATH)/verifier28/
151 LOCAL_CFLAGS += -DUSE_28_VERIFIER
152 else
153 LOCAL_C_INCLUDES += $(LOCAL_PATH)/install/include
154 endif
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)
bigbiffd58ba182020-03-23 10:02:29 -0400163 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
164 LOCAL_SHARED_LIBRARIES += libziparchive
165 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include system/core/libziparchive/include
166 else
167 LOCAL_SHARED_LIBRARIES += libziparchive
168 LOCAL_C_INCLUDES += system/core/libziparchive/include
bigbiffd58ba182020-03-23 10:02:29 -0400169 endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500170else
171 LOCAL_SHARED_LIBRARIES += libminzip
172 LOCAL_CFLAGS += -DUSE_MINZIP
173endif
174
Dees_Troy4546fe72013-01-10 14:33:27 +0000175ifneq ($(wildcard system/core/libsparse/Android.mk),)
176LOCAL_SHARED_LIBRARIES += libsparse
177endif
178
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500179ifeq ($(TW_OEM_BUILD),true)
180 LOCAL_CFLAGS += -DTW_OEM_BUILD
181 BOARD_HAS_NO_REAL_SDCARD := true
182 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400183 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500184endif
Yabin Cui99281df2016-02-17 12:21:52 -0800185
Doug Zongker49c73a72010-06-29 17:36:28 -0700186ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500187 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
188 LOCAL_CFLAGS += -DUSE_EXT4
189 LOCAL_C_INCLUDES += system/extras/ext4_utils
190 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
bigbiffee7b7ff2020-03-23 15:08:27 -0400205ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true)
206 LOCAL_CFLAGS += -DPRODUCT_USE_DYNAMIC_PARTITIONS=1
207endif
208
Ying Wang5a50b1b2015-03-10 11:56:56 -0700209LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800210
Ethan Yonker93382822018-11-01 15:25:31 -0500211ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
212 LOCAL_SRC_FILES += BasePartition.cpp
213else
214 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
215endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800216
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700217LOCAL_C_INCLUDES += system/extras/ext4_utils
218
that0e2140e2016-08-10 21:04:26 +0200219tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
220ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
221 tw_git_revision := $(tw_git_revision)-dirty
222endif
223LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
224
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500225ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
mauronofriobabc15e2020-03-16 14:59:39 +0000226ifeq ($(TW_FORCE_USE_BUSYBOX), true)
227 TW_USE_TOOLBOX := false
228else
229 TW_USE_TOOLBOX := true
230endif
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500231ifeq ($(TW_EXCLUDE_MTP),)
232 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
233endif
234else
235ifeq ($(TW_EXCLUDE_MTP),)
236 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
237 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
238endif
239endif
240
Dees_Troy51a0e822012-09-05 15:24:24 -0400241#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400242ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400243 LOCAL_CFLAGS += -DTW_HAS_MTP
244endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700245ifneq ($(TW_NO_SCREEN_TIMEOUT),)
246 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
247endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400248ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
249 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
250endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400251ifneq ($(RECOVERY_SDCARD_ON_DATA),)
252 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
253endif
254ifneq ($(TW_INCLUDE_DUMLOCK),)
255 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
256endif
257ifneq ($(TW_INTERNAL_STORAGE_PATH),)
258 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
259endif
260ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
261 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
262endif
263ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
264 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
265endif
266ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
267 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
268endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530269ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
270 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
271endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400272ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
273 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
274endif
275ifeq ($(TW_NO_REBOOT_RECOVERY), true)
276 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
277endif
278ifeq ($(TW_NO_BATT_PERCENT), true)
279 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
280endif
Jenkins1710bf22014-10-02 20:22:21 -0400281ifeq ($(TW_NO_CPU_TEMP), true)
282 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
283endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400284ifneq ($(TW_CUSTOM_POWER_BUTTON),)
285 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
286endif
287ifeq ($(TW_ALWAYS_RMRF), true)
288 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
289endif
290ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
291 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
292endif
293ifeq ($(TW_NO_USB_STORAGE), true)
294 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
295endif
296ifeq ($(TW_INCLUDE_INJECTTWRP), true)
297 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
298endif
299ifeq ($(TW_INCLUDE_BLOBPACK), true)
300 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
301endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400302ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
303 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
304endif
305ifneq ($(BOARD_UMS_LUNFILE),)
306 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
307endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400308ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
309 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
310endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200311ifeq ($(TW_HAS_EDL_MODE), true)
312 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
313endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500314ifeq ($(TW_NO_SCREEN_BLANK), true)
315 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
316endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400317ifeq ($(TW_SDEXT_NO_EXT4), true)
318 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
319endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400320ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
321 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
322endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000323ifeq ($(TW_NO_EXFAT_FUSE), true)
324 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
325endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400326ifeq ($(TW_NO_HAPTICS), true)
327 LOCAL_CFLAGS += -DTW_NO_HAPTICS
328endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400329ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600330 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400331endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600332ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600333 TW_INCLUDE_CRYPTO := true
334endif
335ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600336 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500337 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500338 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600339 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
340 TW_INCLUDE_CRYPTO_FBE := true
341 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
342 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500343 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
344 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
345 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600346 endif
nkk7171c6c502017-01-05 23:55:05 +0200347 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
348 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Captain Throwback89a03cc2020-02-04 15:34:06 -0500349 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
350 TW_INCLUDE_LIBRESETPROP := true
351 endif
nkk7171c6c502017-01-05 23:55:05 +0200352 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
353 LOCAL_STATIC_LIBRARIES += libvolddecrypt
354 endif
355 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600356endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500357WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500358 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700359ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
360 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
361endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200362ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
363 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
364endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600365ifneq ($(TW_BRIGHTNESS_PATH),)
366 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
367endif
xNUTxe85f02d2014-07-18 01:30:58 +0200368ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
369 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
370endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600371ifneq ($(TW_MAX_BRIGHTNESS),)
372 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
373endif
Greg Wallace36ade452015-11-08 13:54:25 -0500374ifneq ($(TW_DEFAULT_BRIGHTNESS),)
375 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
376endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000377ifneq ($(TW_CUSTOM_BATTERY_PATH),)
378 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
379endif
Jenkins1710bf22014-10-02 20:22:21 -0400380ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
381 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
382endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000383ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
384 LOCAL_SHARED_LIBRARIES += libopenaes
385else
386 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
387endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100388ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300389 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
390 LOCAL_CFLAGS += -DQCOM_RTC_FIX
391 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100392 LOCAL_CFLAGS += -DQCOM_RTC_FIX
393 endif
394else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
395 LOCAL_CFLAGS += -DQCOM_RTC_FIX
396endif
Matt Mower6883d732014-03-20 17:28:13 -0500397ifneq ($(TW_NO_LEGACY_PROPS),)
398 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
399endif
Dees Troy4159aed2014-02-28 17:24:43 +0000400ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
401 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
402endif
Matt Mowerec009e82015-01-30 13:00:49 -0600403ifneq ($(TARGET_RECOVERY_INITRC),)
404 TW_EXCLUDE_DEFAULT_USB_INIT := true
405endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500406ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
407 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
408endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500409ifneq ($(TW_DEFAULT_LANGUAGE),)
410 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
411else
412 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
413endif
Phoenix591e444d112018-02-03 07:23:54 +0000414ifneq ($(TW_CLOCK_OFFSET),)
415 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
416endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100417ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),)
418 TW_INCLUDE_LIBRESETPROP := true
419 LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS)
420endif
421ifneq ($(TW_INCLUDE_LIBRESETPROP),)
Chaosmaster97c45412020-02-15 19:11:45 +0100422 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
423 $(warning libresetprop is not available for android < 7)
424 else
425 LOCAL_SHARED_LIBRARIES += libresetprop
426 LOCAL_C_INCLUDES += external/magisk-prebuilt/include
427 LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP
428 endif
Chaosmaster461e39f2020-02-07 01:48:13 +0100429endif
430
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500431TWRP_REQUIRED_MODULES += \
bigbiffd58ba182020-03-23 10:02:29 -0400432 relink \
433 relink_init \
Matt Mower031163b2014-11-01 15:13:03 -0500434 dump_image \
435 erase_image \
436 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500437 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500438 pigz \
439 teamwin \
Matt Mower031163b2014-11-01 15:13:03 -0500440 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600441 fsck.fat \
442 fatlabel \
443 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500444 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500445 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500446 libbootloader_message_twrp \
447 init.recovery.hlthchrg.rc \
bigbiff973167a2020-04-06 15:44:20 -0400448 init.recovery.service.rc \
449 init.recovery.ldconfig.rc \
450 awk
Matt Mower031163b2014-11-01 15:13:03 -0500451
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600452ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500453 ifneq ($(TARGET_ARCH), x86_64)
454 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
455 else
456 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
457 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600458else
459 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600460endif
bigbiff416fe3a2020-03-28 13:46:48 -0400461
462ifneq ($(wildcard external/zip/Android.mk),)
463 TWRP_REQUIRED_MODULES += zip
464endif
465ifneq ($(wildcard external/unzip/Android.mk),)
466 TWRP_REQUIRED_MODULES += unzip
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600467endif
Matt Mower84057612017-01-08 13:32:18 -0600468
Matt Mower20172792014-11-14 10:54:03 -0600469ifneq ($(TW_NO_EXFAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500470 TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600471 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500472 TWRP_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600473 endif
Matt Mower20172792014-11-14 10:54:03 -0600474endif
Matt Mower031163b2014-11-01 15:13:03 -0500475ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600476 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500477 TWRP_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600478 else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500479 TWRP_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600480 endif
Matt Mower031163b2014-11-01 15:13:03 -0500481endif
482ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500483 TWRP_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500484endif
485ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500486 TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500487 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
488 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
489endif
Matt Mower031163b2014-11-01 15:13:03 -0500490ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500491 TWRP_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500492endif
493ifneq ($(TW_OEM_BUILD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500494 TWRP_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500495endif
496ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500497 TWRP_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500498endif
499ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500500 TWRP_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500501endif
Matt Mowerec009e82015-01-30 13:00:49 -0600502ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500503 TWRP_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600504endif
Captain Throwback1f127752016-01-19 17:30:20 -0500505ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500506 TWRP_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600507 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500508 TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600509 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500510endif
Matt Mower031163b2014-11-01 15:13:03 -0500511# Allow devices to specify device-specific recovery dependencies
512ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500513 TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500514endif
Dees Troy3454ade2015-01-20 19:21:04 +0000515LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
516LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500517ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400518ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500519 TWRP_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500520 mount.ntfs \
521 fsck.ntfs \
522 mkfs.ntfs
523else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500524 TWRP_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500525 ntfs-3g \
526 ntfsfix \
527 mkntfs
528endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500529endif
Matt Mower58294912015-12-10 11:54:28 -0600530ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
531ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500532 TWRP_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600533 fsck.f2fs \
534 mkfs.f2fs
535endif
Ethan Yonker93382822018-11-01 15:25:31 -0500536ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
bigbiffd58ba182020-03-23 10:02:29 -0400537 TWRP_REQUIRED_MODULES += sload.f2fs \
538 libfs_mgr \
539 fs_mgr \
540 libinit
Ethan Yonker93382822018-11-01 15:25:31 -0500541endif
Matt Mower58294912015-12-10 11:54:28 -0600542endif
Matt Mower031163b2014-11-01 15:13:03 -0500543
Captain Throwback8d70eb62019-11-12 09:57:29 -0500544ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
545 TWRP_REQUIRED_MODULES += ld.config.txt
bigbiffd58ba182020-03-23 10:02:29 -0400546 ifeq ($(BOARD_VNDK_RUNTIME_DISABLE),true)
547 LOCAL_POST_INSTALL_CMD += \
548 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
549 $(TARGET_OUT_ETC)/ld.config.vndk_lite.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
550 else
551 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
552 LOCAL_POST_INSTALL_CMD += \
553 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
bigbiff973167a2020-04-06 15:44:20 -0400554 $(TARGET_RECOVERY_ROOT_OUT)/system/etc/ld.config.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt
bigbiffd58ba182020-03-23 10:02:29 -0400555 else
556 LOCAL_POST_INSTALL_CMD += \
557 sed 's/\(namespace.default.search.paths\)\s\{1,\}=/namespace.default.search.paths = \/sbin\n\1 +=/' \
558 $(TARGET_OUT_ETC)/ld.config.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
559 endif
560 endif
Captain Throwback8d70eb62019-11-12 09:57:29 -0500561endif
562
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500563ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
564 TWRP_REQUIRED_MODULES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600565endif
566
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500567ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
568 ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
569 TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh
570 endif
571endif
572
573ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
574 LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES)
575else
576 LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES)
Mark Salyzyn13aca592016-03-09 14:58:16 -0800577endif
578
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800579include $(BUILD_EXECUTABLE)
580
Matt Mowerd821c962017-02-15 12:36:18 -0600581# Symlink for file_contexts
582include $(CLEAR_VARS)
583
Captain Throwback3184b2f2017-03-07 12:07:40 -0500584LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600585LOCAL_MODULE_TAGS := optional
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500586ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
587 LOCAL_REQUIRED_MODULES := file_contexts.bin
588else
589 LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin
590endif
Matt Mowerd821c962017-02-15 12:36:18 -0600591LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500592 $(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 -0600593
bigbiff416fe3a2020-03-28 13:46:48 -0400594include $(BUILD_PHONY_PACKAGE)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400595
Mark Salyzyn13aca592016-03-09 14:58:16 -0800596# recovery-persist (system partition dynamic executable run after /data mounts)
597# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500598ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
599 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500600 LOCAL_SRC_FILES := \
bigbiffd58ba182020-03-23 10:02:29 -0400601 recovery-persist.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500602 LOCAL_MODULE := recovery-persist
bigbiffd58ba182020-03-23 10:02:29 -0400603 LOCAL_SHARED_LIBRARIES := liblog libbase libmetricslogger
604 LOCAL_STATIC_LIBRARIES := libotautil
605 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
606 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 29; echo $$?),0)
607 LOCAL_C_INCLUDES += system/core/libmetricslogger/include \
608 system/core/libstats/include
609 endif
Ethan Yonkerf1179622016-08-25 15:32:21 -0500610 LOCAL_CFLAGS := -Werror
611 LOCAL_INIT_RC := recovery-persist.rc
612 include $(BUILD_EXECUTABLE)
613endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800614
Mark Salyzyn13aca592016-03-09 14:58:16 -0800615# recovery-refresh (system partition dynamic executable run at init)
616# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500617ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
618 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500619 LOCAL_SRC_FILES := \
bigbiffd58ba182020-03-23 10:02:29 -0400620 recovery-refresh.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500621 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500622 LOCAL_SHARED_LIBRARIES := liblog libbase
bigbiffd58ba182020-03-23 10:02:29 -0400623 LOCAL_STATIC_LIBRARIES := libotautil
624 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500625 LOCAL_CFLAGS := -Werror
626 LOCAL_INIT_RC := recovery-refresh.rc
627 include $(BUILD_EXECUTABLE)
628endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800629
Ethan Yonker34ae4832016-08-24 15:32:18 -0500630# shared libfusesideload
631# ===============================
bigbiffd58ba182020-03-23 10:02:29 -0400632ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
633 include $(CLEAR_VARS)
634 LOCAL_CLANG := true
635 LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
636 LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
Ethan Yonker34ae4832016-08-24 15:32:18 -0500637
bigbiffd58ba182020-03-23 10:02:29 -0400638 LOCAL_MODULE_TAGS := optional
639 LOCAL_MODULE := libfusesideload
640 LOCAL_SHARED_LIBRARIES := libcutils libc
641 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
642 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
643 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
644 LOCAL_CFLAGS += -DUSE_MINCRYPT
645 else
646 LOCAL_SHARED_LIBRARIES += libcrypto libbase
647 endif
648 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
649 LOCAL_SRC_FILES := fuse_sideload22.cpp
650 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
651 else
652 # ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
653 LOCAL_SRC_FILES := fuse_sideload28/fuse_sideload.cpp
654 # else
655 # LOCAL_SRC_FILES := fuse_sideload/fuse_sideload.cpp \
656 fuse_sideload/fuse_provider.cpp
657 # endif
658 endif
659 include $(BUILD_SHARED_LIBRARY)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500660endif
Tao Bao42c45e22018-07-31 09:37:12 -0700661
Elliott Hughes63a31922016-06-09 17:41:22 -0700662# libmounts (static library)
663# ===============================
664include $(CLEAR_VARS)
665LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700666LOCAL_CFLAGS := \
667 -Wall \
668 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700669LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700670LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700671include $(BUILD_STATIC_LIBRARY)
672
Tao Bao62e0bc72017-04-10 16:55:57 -0700673# librecovery (static library)
674# ===============================
675include $(CLEAR_VARS)
676LOCAL_SRC_FILES := \
677 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700678LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700679LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700680
681ifeq ($(AB_OTA_UPDATER),true)
682 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
683endif
684
Tao Bao62e0bc72017-04-10 16:55:57 -0700685LOCAL_MODULE := librecovery
686LOCAL_STATIC_LIBRARIES := \
687 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700688 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700689 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700690 libcrypto_utils \
691 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700692 libbase \
693 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700694
695include $(BUILD_STATIC_LIBRARY)
696
Ethan Yonker34ae4832016-08-24 15:32:18 -0500697# shared libaosprecovery for Apache code
698# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000699include $(CLEAR_VARS)
700
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800701
Dees_Troy2673cec2013-04-02 20:22:16 +0000702LOCAL_MODULE := libaosprecovery
bigbiffd58ba182020-03-23 10:02:29 -0400703LOCAL_MODULE_TAGS := optional
704ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
705 LOCAL_SRC_FILES := install28/adb_install.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp \
706 installcommand.cpp zipwrap.cpp
707else
708 LOCAL_SRC_FILES := install/adb_install.cpp install/asn1_decoder.cpp install/fuse_sdcard_install.cpp\
709 install/install.cpp install/installcommand.cpp install/legacy_property_service.cpp \
710 install/package.cpp install/verifier.cpp install/wipe_data.cpp install/tw_atomic.cpp \
711 install/set_metadata.cpp verifier28/verifier.cpp install/zipwrap.cpp install/ZipUtil.cpp
712endif
713LOCAL_SHARED_LIBRARIES += libbase libbootloader_message libcrypto libext4_utils \
714 libfs_mgr libfusesideload libhidl-gen-utils libhidlbase libhidltransport \
715 liblog libselinux libtinyxml2 libutils libz libziparchive libcutils
Ethan Yonker941a8992016-12-05 09:04:30 -0600716LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500717ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500718 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600719 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500720 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500721else
722 LOCAL_SHARED_LIBRARIES += libc++
723endif
724ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
725 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600726 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500727 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500728 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
729else
bigbiffd58ba182020-03-23 10:02:29 -0400730 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 24; echo $$?),0)
731 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 28; echo $$?),0)
732 LOCAL_CFLAGS := -std=gnu++2a
733 LOCAL_C_INCLUDES += $(commands_TWRP_local_path)/install/include \
734 $(commands_TWRP_local_path)/recovery_ui/include \
735 $(commands_TWRP_local_path)/otautil/include \
736 $(commands_TWRP_local_path)/minadbd \
737 $(commands_TWRP_local_path)/minzip \
738 system/libvintf/include
739 LOCAL_STATIC_LIBRARIES += libotautil libvintf_recovery libvintf
740 else
741 LOCAL_C_INCLUDES += $(commands_TWRP_local_path)/install28/
742 LOCAL_CFLAGS += -DUSE_28_INSTALL
743 endif
744 LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
745 else
746 LOCAL_SHARED_LIBRARIES += libcrypto libbase
747 LOCAL_SRC_FILES += verifier28/verifier.cpp verifier28/asn1_decoder.cpp
748 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include $(LOCAL_PATH)/verifier28 \
749 system/libvintf/include
750 LOCAL_CFLAGS += -DUSE_28_VERIFIER
751 endif
Ethan Yonkerf1179622016-08-25 15:32:21 -0500752endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700753
Ethan Yonker941a8992016-12-05 09:04:30 -0600754ifeq ($(AB_OTA_UPDATER),true)
755 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
756endif
bigbiffd58ba182020-03-23 10:02:29 -0400757
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500758ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
bigbiffd58ba182020-03-23 10:02:29 -0400759 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 29; echo $$?),0)
760 # LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
761 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils libfs_mgr
762 LOCAL_STATIC_LIBRARIES += libvintf_recovery liblogwrap libavb libvintf libtinyxml2 libz
763 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
764 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
765 # Android 9.0's libvintf also needs this library
766 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
767 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500768 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800769else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500770 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800771endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000772
773include $(BUILD_SHARED_LIBRARY)
bigbiffd58ba182020-03-23 10:02:29 -0400774
Tao Baod80a9982016-03-03 11:43:47 -0800775# libverifier (static library)
776# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700777include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700778LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700779LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700780LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700781 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700782 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800783LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700784 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800785 libcrypto_utils \
786 libcrypto \
787 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700788LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800789include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800790
Dees_Troy51a0e822012-09-05 15:24:24 -0400791commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600792
Ethan Yonker58f21322018-08-24 11:17:36 -0500793# $(LOCAL_PATH)/edify/Android.mk
794# $(LOCAL_PATH)/otafault/Android.mk
bigbiffd58ba182020-03-23 10:02:29 -0400795
796 # $(commands_TWRP_local_path)/boot_control/Android.bp
bigbiffd58ba182020-03-23 10:02:29 -0400797 # $(commands_TWRP_local_path)/update_verifier/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700798include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500799 $(commands_TWRP_local_path)/updater/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500800 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
801
802ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
803include $(commands_TWRP_local_path)/bootloader_message/Android.mk
804endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400805
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500806ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
807 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
808else
809 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
810endif
811
Matt Mowerf746dbb2015-05-13 22:56:31 -0500812ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500813 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500814endif
815
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500816ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500817 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
818 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
819 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
820 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500821 include $(commands_TWRP_local_path)/minadbd/Android.mk \
822 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500823else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500824 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500825 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
826 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500827endif
828
bigbiffd58ba182020-03-23 10:02:29 -0400829 # $(commands_TWRP_local_path)/otautil/Android.mk \
830
Dees_Troy51a0e822012-09-05 15:24:24 -0400831#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500832include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
833 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
834 $(commands_TWRP_local_path)/gui/Android.mk \
835 $(commands_TWRP_local_path)/mmcutils/Android.mk \
836 $(commands_TWRP_local_path)/bmlutils/Android.mk \
837 $(commands_TWRP_local_path)/prebuilt/Android.mk \
838 $(commands_TWRP_local_path)/mtdutils/Android.mk \
839 $(commands_TWRP_local_path)/flashutils/Android.mk \
840 $(commands_TWRP_local_path)/pigz/Android.mk \
841 $(commands_TWRP_local_path)/libtar/Android.mk \
842 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
843 $(commands_TWRP_local_path)/libblkid/Android.mk \
844 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
845 $(commands_TWRP_local_path)/openaes/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500846 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500847 $(commands_TWRP_local_path)/minzip/Android.mk \
848 $(commands_TWRP_local_path)/dosfstools/Android.mk \
849 $(commands_TWRP_local_path)/etc/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500850 $(commands_TWRP_local_path)/simg2img/Android.mk \
851 $(commands_TWRP_local_path)/adbbu/Android.mk \
852 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
853 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
854 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600855
Ethan Yonker534d4e02016-08-26 10:05:03 -0500856ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500857 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500858endif
859
Ethan Yonker253368a2014-11-25 15:00:52 -0600860ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500861 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500862 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600863 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500864 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600865 endif
nkk7171c6c502017-01-05 23:55:05 +0200866 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
867 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500868 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200869 endif
870 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500871 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600872endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100873ifeq ($(BUILD_ID), GINGERBREAD)
874 TW_NO_EXFAT := true
875endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000876ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500877 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
878 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
879 $(commands_TWRP_local_path)/fuse/Android.mk \
880 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600881 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500882 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600883 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400884endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500885ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500886 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500887endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500888
Talustus3019a912013-04-06 11:50:07 +0200889# FB2PNG
890ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500891 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200892endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500893
Matt Mower55c75ca2014-08-31 11:30:15 -0500894endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500895
896commands_TWRP_local_path :=