blob: 4e7d7ccef37a6d437a846f2c3546ee22c6608fa7 [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
bigbiff26d5d5f2020-03-23 09:56:16 -040018<<<<<<< HEAD
Ethan Yonker66bcd492018-12-20 09:03:17 -060019ifneq ($(project-path-for),)
Matt Mower66766fe2014-10-06 18:03:39 -050020 ifeq ($(LOCAL_PATH),$(call project-path-for,recovery))
21 PROJECT_PATH_AGREES := true
Andrea Mennillof591c872015-11-03 20:58:11 +010022 BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy
Matt Mower66766fe2014-10-06 18:03:39 -050023 endif
24else
25 ifeq ($(LOCAL_PATH),bootable/recovery)
26 PROJECT_PATH_AGREES := true
Ethan Yonker11309e92015-07-01 07:58:56 -050027 BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy
Ethan Yonkerf0a7e592019-04-04 10:06:41 -050028 else
29 ifeq ($(LOCAL_PATH),bootable/recovery-twrp)
30 ifeq ($(RECOVERY_VARIANT),twrp)
31 PROJECT_PATH_AGREES := true
32 BOARD_SEPOLICY_DIRS += bootable/recovery-twrp/sepolicy
33 endif
34 endif
Matt Mower66766fe2014-10-06 18:03:39 -050035 endif
Matt Mower55c75ca2014-08-31 11:30:15 -050036endif
37
Matt Mower66766fe2014-10-06 18:03:39 -050038ifeq ($(PROJECT_PATH_AGREES),true)
Matt Mower55c75ca2014-08-31 11:30:15 -050039
Matt Mower047723c2015-12-10 01:31:15 -060040ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22))
Ethan Yonker11309e92015-07-01 07:58:56 -050041# Make recovery domain permissive for TWRP
that8e213fd2015-10-17 00:17:53 +020042 BOARD_SEPOLICY_UNION += twrp.te
43endif
Ethan Yonker11309e92015-07-01 07:58:56 -050044
Michael Bestas0cc23762018-07-13 21:37:56 +030045ifeq ($(CM_PLATFORM_SDK_VERSION),)
46 CM_PLATFORM_SDK_VERSION := 0
47endif
48
Motorhead199175b6f662014-06-12 15:58:33 -070049include $(CLEAR_VARS)
50
Matt Mower1777cdc2015-09-26 15:56:56 -050051TWRES_PATH := /twres/
Dees Troy3454ade2015-01-20 19:21:04 +000052TWHTCD_PATH := $(TWRES_PATH)htcd/
53
Dees_Troy51a0e822012-09-05 15:24:24 -040054TARGET_RECOVERY_GUI := true
Joe Onorato6396e702012-05-31 23:21:46 -070055
bigbiff bigbiff584b9772016-12-08 21:21:17 -050056ifneq ($(TW_DEVICE_VERSION),)
57 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
58else
59 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
60endif
dianlujitao4879b372018-12-03 18:45:47 +080061LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbiff bigbiff584b9772016-12-08 21:21:17 -050062
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000064 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060065 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050066 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060067 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050068 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040070 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040071 partition.cpp \
72 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060073 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040074 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040075 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040076 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000077 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040078 tarWrite.c \
79 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040080
Dees_Troya58bead2012-09-27 09:49:29 -040081ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040082 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
83endif
84
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080085LOCAL_MODULE := recovery
86
Dees_Troy51a0e822012-09-05 15:24:24 -040087#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088
Ethan Yonker34ae4832016-08-24 15:32:18 -050089#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060090#ifeq ($(HOST_OS),linux)
91#LOCAL_REQUIRED_MODULES := mkfs.f2fs
92#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050093#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070094
Doug Zongkere08991e2010-02-02 13:09:52 -080095RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080096RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070097LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080098LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070099LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700100
Dees_Troy51a0e822012-09-05 15:24:24 -0400101#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +0000102# libext4_utils_static \
103# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -0400104# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +0000105# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -0400106# libmtdutils \
107# libmincrypt \
108# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +0000109# libminui \
110# libpixelflinger_static \
111# libpng \
112# libfs_mgr \
113# libcutils \
114# liblog \
115# libselinux \
116# libstdc++ \
117# libm \
118# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400119
Dan Albert1ddd3502015-02-18 15:58:15 -0800120LOCAL_C_INCLUDES += \
121 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500122 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800123 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500124 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500125 external/zlib \
126 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100127
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400128LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800129ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400130 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500131 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400132else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500133 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800134endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400135
136LOCAL_STATIC_LIBRARIES :=
137LOCAL_SHARED_LIBRARIES :=
138
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600139LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500140LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
141LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500142
Xing0af1ac12015-11-27 11:19:37 -0800143ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500144 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400145 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500146endif
147ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
148 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500149 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
150 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500151else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500152 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500153endif
154
155ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
156 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500157endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700158
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500159ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
160 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500161 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500162else
163 LOCAL_SHARED_LIBRARIES += libminzip
164 LOCAL_CFLAGS += -DUSE_MINZIP
165endif
166
Dees_Troy4546fe72013-01-10 14:33:27 +0000167ifneq ($(wildcard system/core/libsparse/Android.mk),)
168LOCAL_SHARED_LIBRARIES += libsparse
169endif
170
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500171ifeq ($(TW_OEM_BUILD),true)
172 LOCAL_CFLAGS += -DTW_OEM_BUILD
173 BOARD_HAS_NO_REAL_SDCARD := true
174 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400175 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500176endif
Yabin Cui99281df2016-02-17 12:21:52 -0800177
Doug Zongker49c73a72010-06-29 17:36:28 -0700178ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500179 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
180 LOCAL_CFLAGS += -DUSE_EXT4
181 LOCAL_C_INCLUDES += system/extras/ext4_utils
182 LOCAL_SHARED_LIBRARIES += libext4_utils
183 ifneq ($(wildcard external/lz4/Android.mk),)
184 #LOCAL_STATIC_LIBRARIES += liblz4
185 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700186 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700187endif
Matt Mower87413642017-01-17 21:14:46 -0600188LOCAL_C_INCLUDES += external/libselinux/include
189LOCAL_SHARED_LIBRARIES += libselinux
Doug Zongker49c73a72010-06-29 17:36:28 -0700190
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700191ifeq ($(AB_OTA_UPDATER),true)
192 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500193 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500194 TWRP_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700195endif
196
Ying Wang5a50b1b2015-03-10 11:56:56 -0700197LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198
Dees_Troy1669f892013-09-04 18:35:08 +0000199#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500200# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000201#else
202# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
203#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500204ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
205 LOCAL_SRC_FILES += BasePartition.cpp
206else
207 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
208endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800209
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700210LOCAL_C_INCLUDES += system/extras/ext4_utils
211
that0e2140e2016-08-10 21:04:26 +0200212tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
213ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
214 tw_git_revision := $(tw_git_revision)-dirty
bigbiff26d5d5f2020-03-23 09:56:16 -0400215=======
Tao Bao673bb6f2018-08-03 20:56:25 -0700216# Needed by build/make/core/Makefile. Must be consistent with the value in Android.bp.
Tao Bao1d866052017-04-10 16:55:57 -0700217RECOVERY_API_VERSION := 3
218RECOVERY_FSTAB_VERSION := 2
219
Tao Baof7e80122018-03-23 22:01:43 -0700220# TARGET_RECOVERY_UI_LIB should be one of librecovery_ui_{default,wear,vr} or a device-specific
221# module that defines make_device() and the exact RecoveryUI class for the target. It defaults to
222# librecovery_ui_default, which uses ScreenRecoveryUI.
223TARGET_RECOVERY_UI_LIB ?= librecovery_ui_default
224
Tao Bao42c45e22018-07-31 09:37:12 -0700225# librecovery_ui_ext (shared library)
226# ===================================
227include $(CLEAR_VARS)
228
229LOCAL_MODULE := librecovery_ui_ext
230
231# LOCAL_MODULE_PATH for shared libraries is unsupported in multiarch builds.
232LOCAL_MULTILIB := first
233
234ifeq ($(TARGET_IS_64_BIT),true)
235LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/lib64
236else
237LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/lib
bigbiff26d5d5f2020-03-23 09:56:16 -0400238>>>>>>> android-10.0.0_r25
that0e2140e2016-08-10 21:04:26 +0200239endif
240LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
241
bigbiff26d5d5f2020-03-23 09:56:16 -0400242<<<<<<< HEAD
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500243ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
244ifeq ($(TW_EXCLUDE_MTP),)
245 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
246endif
247else
248ifeq ($(TW_EXCLUDE_MTP),)
249 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
250 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
251endif
252endif
253
Dees_Troy51a0e822012-09-05 15:24:24 -0400254#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400255ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400256 LOCAL_CFLAGS += -DTW_HAS_MTP
257endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700258ifneq ($(TW_NO_SCREEN_TIMEOUT),)
259 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
260endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400261ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
262 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
263endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400264ifneq ($(RECOVERY_SDCARD_ON_DATA),)
265 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
266endif
267ifneq ($(TW_INCLUDE_DUMLOCK),)
268 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
269endif
270ifneq ($(TW_INTERNAL_STORAGE_PATH),)
271 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
272endif
273ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
274 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
275endif
276ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
277 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
278endif
279ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
280 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
281endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530282ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
283 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
284endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400285ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
286 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
287endif
288ifeq ($(TW_NO_REBOOT_RECOVERY), true)
289 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
290endif
291ifeq ($(TW_NO_BATT_PERCENT), true)
292 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
293endif
Jenkins1710bf22014-10-02 20:22:21 -0400294ifeq ($(TW_NO_CPU_TEMP), true)
295 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
296endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400297ifneq ($(TW_CUSTOM_POWER_BUTTON),)
298 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
299endif
300ifeq ($(TW_ALWAYS_RMRF), true)
301 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
302endif
303ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
304 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
305endif
306ifeq ($(TW_NO_USB_STORAGE), true)
307 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
308endif
309ifeq ($(TW_INCLUDE_INJECTTWRP), true)
310 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
311endif
312ifeq ($(TW_INCLUDE_BLOBPACK), true)
313 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
314endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400315ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
316 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
317endif
318ifneq ($(BOARD_UMS_LUNFILE),)
319 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
320endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400321ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
322 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
323endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200324ifeq ($(TW_HAS_EDL_MODE), true)
325 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
326endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500327ifeq ($(TW_NO_SCREEN_BLANK), true)
328 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
329endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400330ifeq ($(TW_SDEXT_NO_EXT4), true)
331 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
332endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400333ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
334 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
335endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000336ifeq ($(TW_NO_EXFAT_FUSE), true)
337 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
338endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400339ifeq ($(TW_NO_HAPTICS), true)
340 LOCAL_CFLAGS += -DTW_NO_HAPTICS
341endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400342ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600343 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400344endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600345ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600346 TW_INCLUDE_CRYPTO := true
347endif
348ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600349 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500350 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500351 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600352 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
353 TW_INCLUDE_CRYPTO_FBE := true
354 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
355 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500356 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
357 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
358 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600359 endif
nkk7171c6c502017-01-05 23:55:05 +0200360 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
361 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
362 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
363 LOCAL_STATIC_LIBRARIES += libvolddecrypt
364 endif
365 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600366endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500367WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500368 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700369ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
370 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
371endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200372ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
373 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
374endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600375ifneq ($(TW_BRIGHTNESS_PATH),)
376 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
377endif
xNUTxe85f02d2014-07-18 01:30:58 +0200378ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
379 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
380endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600381ifneq ($(TW_MAX_BRIGHTNESS),)
382 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
383endif
Greg Wallace36ade452015-11-08 13:54:25 -0500384ifneq ($(TW_DEFAULT_BRIGHTNESS),)
385 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
386endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000387ifneq ($(TW_CUSTOM_BATTERY_PATH),)
388 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
389endif
Jenkins1710bf22014-10-02 20:22:21 -0400390ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
391 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
392endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000393ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
394 LOCAL_SHARED_LIBRARIES += libopenaes
395else
396 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
397endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100398ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300399 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
400 LOCAL_CFLAGS += -DQCOM_RTC_FIX
401 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100402 LOCAL_CFLAGS += -DQCOM_RTC_FIX
403 endif
404else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
405 LOCAL_CFLAGS += -DQCOM_RTC_FIX
406endif
Matt Mower6883d732014-03-20 17:28:13 -0500407ifneq ($(TW_NO_LEGACY_PROPS),)
408 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
409endif
Dees Troy4159aed2014-02-28 17:24:43 +0000410ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
411 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
412endif
Matt Mowerec009e82015-01-30 13:00:49 -0600413ifneq ($(TARGET_RECOVERY_INITRC),)
414 TW_EXCLUDE_DEFAULT_USB_INIT := true
415endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500416ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
417 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
418endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500419ifneq ($(TW_DEFAULT_LANGUAGE),)
420 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
421else
422 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
423endif
Phoenix591e444d112018-02-03 07:23:54 +0000424ifneq ($(TW_CLOCK_OFFSET),)
425 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
426endif
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500427TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500428 dump_image \
429 erase_image \
430 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500431 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500432 pigz \
433 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500434 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500435 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600436 fsck.fat \
437 fatlabel \
438 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500439 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500440 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500441 libbootloader_message_twrp \
442 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500443 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500444
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600445ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500446 ifneq ($(TARGET_ARCH), x86_64)
447 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
448 else
449 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
450 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600451else
452 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600453endif
454ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600455 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
456 LOCAL_POST_INSTALL_CMD := \
457 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
458 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
459 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500460else
461 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500462 TWRP_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500463 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800464 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500465 TWRP_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800466 endif
467 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500468 TWRP_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800469 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600470endif
Matt Mower84057612017-01-08 13:32:18 -0600471
Matt Mower20172792014-11-14 10:54:03 -0600472ifneq ($(TW_NO_EXFAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500473 TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600474 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500475 TWRP_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600476 endif
Matt Mower20172792014-11-14 10:54:03 -0600477endif
Matt Mower031163b2014-11-01 15:13:03 -0500478ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600479 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500480 TWRP_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600481 else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500482 TWRP_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600483 endif
Matt Mower031163b2014-11-01 15:13:03 -0500484endif
485ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500486 TWRP_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500487endif
488ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500489 TWRP_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500490 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
491 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
492endif
Matt Mower031163b2014-11-01 15:13:03 -0500493ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500494 TWRP_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500495endif
496ifneq ($(TW_OEM_BUILD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500497 TWRP_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500498endif
499ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500500 TWRP_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500501endif
502ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500503 TWRP_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500504endif
Matt Mowerec009e82015-01-30 13:00:49 -0600505ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500506 TWRP_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600507endif
Captain Throwback1f127752016-01-19 17:30:20 -0500508ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500509 TWRP_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600510 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500511 TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600512 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500513endif
Matt Mower031163b2014-11-01 15:13:03 -0500514# Allow devices to specify device-specific recovery dependencies
515ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500516 TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500517endif
Dees Troy3454ade2015-01-20 19:21:04 +0000518LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
519LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500520ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400521ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500522 TWRP_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500523 mount.ntfs \
524 fsck.ntfs \
525 mkfs.ntfs
526else
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500527 TWRP_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500528 ntfs-3g \
529 ntfsfix \
530 mkntfs
531endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500532endif
Matt Mower58294912015-12-10 11:54:28 -0600533ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
534ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500535 TWRP_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600536 fsck.f2fs \
537 mkfs.f2fs
538endif
Ethan Yonker93382822018-11-01 15:25:31 -0500539ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500540 TWRP_REQUIRED_MODULES += sload.f2fs
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
Martin Dünkelmannc630b382019-12-30 15:19:03 +0100546 TWRP_REQUIRED_MODULES += init.recovery.ldconfig.rc
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*.txt > $(TARGET_RECOVERY_ROOT_OUT)/sbin/ld.config.txt;
Captain Throwback8d70eb62019-11-12 09:57:29 -0500550endif
551
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500552ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
553 TWRP_REQUIRED_MODULES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600554endif
555
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500556ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
557 ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
558 TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh
559 endif
560endif
561
562ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
563 LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES)
564else
565 LOCAL_ADDITIONAL_DEPENDENCIES += $(TWRP_REQUIRED_MODULES)
Mark Salyzyn13aca592016-03-09 14:58:16 -0800566endif
567
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800568include $(BUILD_EXECUTABLE)
569
Matt Mowerd821c962017-02-15 12:36:18 -0600570# Symlink for file_contexts
571include $(CLEAR_VARS)
572
Captain Throwback3184b2f2017-03-07 12:07:40 -0500573LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600574LOCAL_MODULE_TAGS := optional
Ethan Yonkerabf1fb02019-04-24 16:09:07 -0500575ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
576 LOCAL_REQUIRED_MODULES := file_contexts.bin
577else
578 LOCAL_ADDITIONAL_DEPENDENCIES := file_contexts.bin
579endif
Matt Mowerd821c962017-02-15 12:36:18 -0600580LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500581 $(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 -0600582
583include $(BUILD_PHONY_PACKAGE)
584
Ethan Yonker5c933692014-04-04 11:26:32 -0500585ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800586include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400587# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
588BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600589exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500590
Ethan Yonkera60c7862016-02-25 15:32:06 -0600591# Having /sbin/modprobe present on 32 bit devices with can cause a massive
592# performance problem if the kernel has CONFIG_MODULES=y
593ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
594 ifneq ($(TARGET_ARCH), arm64)
595 ifneq ($(TARGET_ARCH), x86_64)
596 exclude += modprobe
597 endif
598 endif
599endif
600
Matt Mower81742fb2014-09-01 14:40:52 -0500601# If busybox does not have restorecon, assume it does not have SELinux support.
602# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600603ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
604 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000605endif
Matt Mower81742fb2014-09-01 14:40:52 -0500606
607RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
608RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400609$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
610$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
611 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
612 @mkdir -p $(dir $@)
613 @rm -rf $@
614 $(hide) ln -sf $(BUSYBOX_BINARY) $@
615
Matt Mower031163b2014-11-01 15:13:03 -0500616include $(CLEAR_VARS)
617LOCAL_MODULE := busybox_symlinks
618LOCAL_MODULE_TAGS := optional
619LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000620ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
621ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
622endif
Matt Mower031163b2014-11-01 15:13:03 -0500623include $(BUILD_PHONY_PACKAGE)
624RECOVERY_BUSYBOX_SYMLINKS :=
625endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400626
Mark Salyzyn13aca592016-03-09 14:58:16 -0800627# recovery-persist (system partition dynamic executable run after /data mounts)
628# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500629ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
630 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500631 LOCAL_SRC_FILES := \
632 recovery-persist.cpp \
633 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500634 LOCAL_MODULE := recovery-persist
635 LOCAL_SHARED_LIBRARIES := liblog libbase
636 LOCAL_CFLAGS := -Werror
637 LOCAL_INIT_RC := recovery-persist.rc
638 include $(BUILD_EXECUTABLE)
639endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800640
Mark Salyzyn13aca592016-03-09 14:58:16 -0800641# recovery-refresh (system partition dynamic executable run at init)
642# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500643ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
644 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500645 LOCAL_SRC_FILES := \
646 recovery-refresh.cpp \
647 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500648 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500649 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500650 LOCAL_CFLAGS := -Werror
651 LOCAL_INIT_RC := recovery-refresh.rc
652 include $(BUILD_EXECUTABLE)
653endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800654
Ethan Yonker34ae4832016-08-24 15:32:18 -0500655# shared libfusesideload
656# ===============================
657include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500658LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500659LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500660LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
661
662LOCAL_MODULE_TAGS := optional
663LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500664LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500665ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500666 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
667 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
668 LOCAL_CFLAGS += -DUSE_MINCRYPT
669else
670 LOCAL_SHARED_LIBRARIES += libcrypto
671endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500672ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
673 LOCAL_SRC_FILES := fuse_sideload22.cpp
674 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
675else
676 LOCAL_SRC_FILES := fuse_sideload.cpp
bigbiff26d5d5f2020-03-23 09:56:16 -0400677=======
Tao Bao42c45e22018-07-31 09:37:12 -0700678LOCAL_WHOLE_STATIC_LIBRARIES := \
679 $(TARGET_RECOVERY_UI_LIB)
680
681LOCAL_SHARED_LIBRARIES := \
682 libbase \
683 liblog \
Tao Bao5fc72a12018-08-07 14:38:51 -0700684 librecovery_ui.recovery
Tao Bao42c45e22018-07-31 09:37:12 -0700685
686include $(BUILD_SHARED_LIBRARY)
687
Tao Bao5fc72a12018-08-07 14:38:51 -0700688# recovery_deps: A phony target that's depended on by `recovery`, which
689# builds additional modules conditionally based on Makefile variables.
690# ======================================================================
Tao Baofd0ace82017-10-11 20:25:36 -0700691include $(CLEAR_VARS)
692
Tao Bao5fc72a12018-08-07 14:38:51 -0700693LOCAL_MODULE := recovery_deps
Tao Bao9e309972018-05-11 15:13:10 -0700694
695ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
696ifeq ($(HOST_OS),linux)
697LOCAL_REQUIRED_MODULES += \
Tao Baoc674dfb2018-12-20 14:25:15 -0800698 make_f2fs.recovery \
699 sload_f2fs.recovery
Tao Bao9e309972018-05-11 15:13:10 -0700700endif
bigbiff26d5d5f2020-03-23 09:56:16 -0400701>>>>>>> android-10.0.0_r25
Ethan Yonker58f21322018-08-24 11:17:36 -0500702endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500703include $(BUILD_SHARED_LIBRARY)
704
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600705# static libfusesideload
706# =============================== (required to fix build errors in 8.1 due to use by tests)
707include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600708LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500709LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600710LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
711
bigbiff26d5d5f2020-03-23 09:56:16 -0400712<<<<<<< HEAD
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600713LOCAL_MODULE_TAGS := optional
714LOCAL_MODULE := libfusesideload
715LOCAL_SHARED_LIBRARIES := libcutils libc
716ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
717 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
718 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
719 LOCAL_CFLAGS += -DUSE_MINCRYPT
720else
721 LOCAL_STATIC_LIBRARIES += libcrypto_static
bigbiff26d5d5f2020-03-23 09:56:16 -0400722=======
Tianjie Xu2b1a4642018-09-06 11:58:55 -0700723# On A/B devices recovery-persist reads the recovery related file from the persist storage and
724# copies them into /data/misc/recovery. Then, for both A/B and non-A/B devices, recovery-persist
725# parses the last_install file and reports the embedded update metrics. Also, the last_install file
726# will be deteleted after the report.
727LOCAL_REQUIRED_MODULES += recovery-persist
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800728ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
Tianjie Xu2b1a4642018-09-06 11:58:55 -0700729LOCAL_REQUIRED_MODULES += recovery-refresh
bigbiff26d5d5f2020-03-23 09:56:16 -0400730>>>>>>> android-10.0.0_r25
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600731endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500732ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
733 LOCAL_SRC_FILES := fuse_sideload22.cpp
734 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
735else
736 LOCAL_SRC_FILES := fuse_sideload.cpp
737endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800738include $(BUILD_STATIC_LIBRARY)
739
bigbiff26d5d5f2020-03-23 09:56:16 -0400740<<<<<<< HEAD
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800741# libmounts (static library)
742# ===============================
743include $(CLEAR_VARS)
744LOCAL_SRC_FILES := mounts.cpp
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800745LOCAL_CFLAGS := \
746 -Wall \
Tao Baod80a9982016-03-03 11:43:47 -0800747 -Werror
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800748LOCAL_MODULE := libmounts
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800749LOCAL_STATIC_LIBRARIES := libbase
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800750include $(BUILD_STATIC_LIBRARY)
751
Tao Bao62e0bc72017-04-10 16:55:57 -0700752# librecovery (static library)
753# ===============================
754include $(CLEAR_VARS)
755LOCAL_SRC_FILES := \
756 install.cpp
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800757LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700758LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700759
760ifeq ($(AB_OTA_UPDATER),true)
761 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
762endif
763
Tao Bao62e0bc72017-04-10 16:55:57 -0700764LOCAL_MODULE := librecovery
765LOCAL_STATIC_LIBRARIES := \
766 libminui \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800767 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700768 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700769 libcrypto_utils \
770 libcrypto \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800771 libbase \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800772 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700773
774include $(BUILD_STATIC_LIBRARY)
775
Ethan Yonker34ae4832016-08-24 15:32:18 -0500776# shared libaosprecovery for Apache code
777# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000778include $(CLEAR_VARS)
779
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800780
Dees_Troy2673cec2013-04-02 20:22:16 +0000781LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500782LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500783LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500784LOCAL_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 -0600785LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
786LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500787ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500788 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600789 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500790 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500791else
792 LOCAL_SHARED_LIBRARIES += libc++
793endif
794ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
795 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600796 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500797 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500798 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
799else
Ethan Yonker941a8992016-12-05 09:04:30 -0600800 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500801 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500802 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500803endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700804
Ethan Yonker941a8992016-12-05 09:04:30 -0600805ifeq ($(AB_OTA_UPDATER),true)
806 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
807endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500808ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500809 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500810 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
811 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500812 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
813 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
814 # Android 9.0 needs c++17 for libvintf
815 LOCAL_CPPFLAGS += -std=c++17
816 # Android 9.0's libvintf also needs this library
817 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
818 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800819else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500820 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800821endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000822
823include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800824# libverifier (static library)
825# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700826include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700827LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700828LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700829LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700830 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700831 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800832LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700833 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800834 libcrypto_utils \
835 libcrypto \
836 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700837LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800838include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800839
Tao Bao016120f2017-08-02 17:11:04 -0700840# Wear default device
841# ===============================
842include $(CLEAR_VARS)
843LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700844LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700845
846# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
847LOCAL_MODULE := librecovery_ui_wear
848
849include $(BUILD_STATIC_LIBRARY)
850
Luke Songa44dba72017-06-12 16:08:33 -0700851# vr headset default device
852# ===============================
853include $(CLEAR_VARS)
854
855LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700856LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700857
858# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
859LOCAL_MODULE := librecovery_ui_vr
860
861include $(BUILD_STATIC_LIBRARY)
bigbiff26d5d5f2020-03-23 09:56:16 -0400862=======
863include $(BUILD_PHONY_PACKAGE)
864>>>>>>> android-10.0.0_r25
Luke Songa44dba72017-06-12 16:08:33 -0700865
Dees_Troy51a0e822012-09-05 15:24:24 -0400866commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600867
Ethan Yonker58f21322018-08-24 11:17:36 -0500868# $(LOCAL_PATH)/edify/Android.mk
869# $(LOCAL_PATH)/otafault/Android.mk
870# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700871include \
bigbiff26d5d5f2020-03-23 09:56:16 -0400872<<<<<<< HEAD
Ethan Yonker58f21322018-08-24 11:17:36 -0500873 $(commands_TWRP_local_path)/boot_control/Android.mk \
874 $(commands_TWRP_local_path)/tests/Android.mk \
875 $(commands_TWRP_local_path)/tools/Android.mk \
876 $(commands_TWRP_local_path)/updater/Android.mk \
877 $(commands_TWRP_local_path)/update_verifier/Android.mk \
878 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
879
880ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
881include $(commands_TWRP_local_path)/bootloader_message/Android.mk
882endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400883
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500884ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
885 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
886else
887 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
888endif
889
Matt Mowerf746dbb2015-05-13 22:56:31 -0500890ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500891 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500892endif
893
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500894ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500895 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
896 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
897 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
898 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500899 include $(commands_TWRP_local_path)/minadbd/Android.mk \
900 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500901else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500902 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500903 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
904 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500905endif
906
Ethan Yonker58f21322018-08-24 11:17:36 -0500907#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400908#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500909include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
910 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
911 $(commands_TWRP_local_path)/gui/Android.mk \
912 $(commands_TWRP_local_path)/mmcutils/Android.mk \
913 $(commands_TWRP_local_path)/bmlutils/Android.mk \
914 $(commands_TWRP_local_path)/prebuilt/Android.mk \
915 $(commands_TWRP_local_path)/mtdutils/Android.mk \
916 $(commands_TWRP_local_path)/flashutils/Android.mk \
917 $(commands_TWRP_local_path)/pigz/Android.mk \
918 $(commands_TWRP_local_path)/libtar/Android.mk \
919 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
920 $(commands_TWRP_local_path)/libblkid/Android.mk \
921 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
922 $(commands_TWRP_local_path)/openaes/Android.mk \
923 $(commands_TWRP_local_path)/toolbox/Android.mk \
924 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500925 $(commands_TWRP_local_path)/minzip/Android.mk \
926 $(commands_TWRP_local_path)/dosfstools/Android.mk \
927 $(commands_TWRP_local_path)/etc/Android.mk \
928 $(commands_TWRP_local_path)/toybox/Android.mk \
929 $(commands_TWRP_local_path)/simg2img/Android.mk \
930 $(commands_TWRP_local_path)/adbbu/Android.mk \
931 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
932 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
933 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600934
Ethan Yonker534d4e02016-08-26 10:05:03 -0500935ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500936 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500937endif
938
Ethan Yonker253368a2014-11-25 15:00:52 -0600939ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500940 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500941 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600942 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500943 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600944 endif
nkk7171c6c502017-01-05 23:55:05 +0200945 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
946 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500947 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200948 endif
949 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500950 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600951endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100952ifeq ($(BUILD_ID), GINGERBREAD)
953 TW_NO_EXFAT := true
954endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000955ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500956 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
957 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
958 $(commands_TWRP_local_path)/fuse/Android.mk \
959 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600960 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500961 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600962 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400963endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500964ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500965 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500966endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500967
Talustus3019a912013-04-06 11:50:07 +0200968# FB2PNG
969ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500970 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200971endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500972
Matt Mower55c75ca2014-08-31 11:30:15 -0500973endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500974
975commands_TWRP_local_path :=
bigbiff26d5d5f2020-03-23 09:56:16 -0400976=======
Joe Onorato6396e702012-05-31 23:21:46 -0700977 $(LOCAL_PATH)/updater/Android.mk \
bigbiff26d5d5f2020-03-23 09:56:16 -0400978>>>>>>> android-10.0.0_r25