blob: c81fed0b6a831d26aeebeeb89c3923a424223a7f [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
Matt Mower66766fe2014-10-06 18:03:39 -050027 endif
Matt Mower55c75ca2014-08-31 11:30:15 -050028endif
29
Matt Mower66766fe2014-10-06 18:03:39 -050030ifeq ($(PROJECT_PATH_AGREES),true)
Matt Mower55c75ca2014-08-31 11:30:15 -050031
Matt Mower047723c2015-12-10 01:31:15 -060032ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22))
Ethan Yonker11309e92015-07-01 07:58:56 -050033# Make recovery domain permissive for TWRP
that8e213fd2015-10-17 00:17:53 +020034 BOARD_SEPOLICY_UNION += twrp.te
35endif
Ethan Yonker11309e92015-07-01 07:58:56 -050036
Motorhead199175b6f662014-06-12 15:58:33 -070037include $(CLEAR_VARS)
38
Matt Mower1777cdc2015-09-26 15:56:56 -050039TWRES_PATH := /twres/
Dees Troy3454ade2015-01-20 19:21:04 +000040TWHTCD_PATH := $(TWRES_PATH)htcd/
41
Dees_Troy51a0e822012-09-05 15:24:24 -040042TARGET_RECOVERY_GUI := true
Joe Onorato6396e702012-05-31 23:21:46 -070043
bigbiff bigbiff584b9772016-12-08 21:21:17 -050044ifneq ($(TW_DEVICE_VERSION),)
45 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
46else
47 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
48endif
49
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080050LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000051 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060052 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050053 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060054 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050055 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040056 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040057 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040058 partition.cpp \
59 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060060 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040061 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040062 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040063 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000064 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040065 tarWrite.c \
66 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040067
Dees_Troya58bead2012-09-27 09:49:29 -040068ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040069 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
70endif
71
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072LOCAL_MODULE := recovery
73
Dees_Troy51a0e822012-09-05 15:24:24 -040074#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075
Ethan Yonker34ae4832016-08-24 15:32:18 -050076#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060077#ifeq ($(HOST_OS),linux)
78#LOCAL_REQUIRED_MODULES := mkfs.f2fs
79#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050080#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070081
Doug Zongkere08991e2010-02-02 13:09:52 -080082RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080083RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070084LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080085LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070086LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070087
Dees_Troy51a0e822012-09-05 15:24:24 -040088#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +000089# libext4_utils_static \
90# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -040091# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +000092# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -040093# libmtdutils \
94# libmincrypt \
95# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +000096# libminui \
97# libpixelflinger_static \
98# libpng \
99# libfs_mgr \
100# libcutils \
101# liblog \
102# libselinux \
103# libstdc++ \
104# libm \
105# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400106
Dan Albert1ddd3502015-02-18 15:58:15 -0800107LOCAL_C_INCLUDES += \
108 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500109 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800110 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500111 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500112 external/zlib \
113 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100114
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400115LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800116ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400117 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500118 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400119else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500120 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800121endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400122
123LOCAL_STATIC_LIBRARIES :=
124LOCAL_SHARED_LIBRARIES :=
125
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600126LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500127LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
128LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500129
Xing0af1ac12015-11-27 11:19:37 -0800130ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500131 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400132 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500133endif
134ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
135 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500136 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
137 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500138else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500139 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500140endif
141
142ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
143 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500144endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700145
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500146ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
147 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500148 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500149else
150 LOCAL_SHARED_LIBRARIES += libminzip
151 LOCAL_CFLAGS += -DUSE_MINZIP
152endif
153
Dees_Troy4546fe72013-01-10 14:33:27 +0000154ifneq ($(wildcard system/core/libsparse/Android.mk),)
155LOCAL_SHARED_LIBRARIES += libsparse
156endif
157
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500158ifeq ($(TW_OEM_BUILD),true)
159 LOCAL_CFLAGS += -DTW_OEM_BUILD
160 BOARD_HAS_NO_REAL_SDCARD := true
161 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400162 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500163endif
Yabin Cui99281df2016-02-17 12:21:52 -0800164
Doug Zongker49c73a72010-06-29 17:36:28 -0700165ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500166 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
167 LOCAL_CFLAGS += -DUSE_EXT4
168 LOCAL_C_INCLUDES += system/extras/ext4_utils
169 LOCAL_SHARED_LIBRARIES += libext4_utils
170 ifneq ($(wildcard external/lz4/Android.mk),)
171 #LOCAL_STATIC_LIBRARIES += liblz4
172 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700173 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700174endif
Matt Mower87413642017-01-17 21:14:46 -0600175LOCAL_C_INCLUDES += external/libselinux/include
176LOCAL_SHARED_LIBRARIES += libselinux
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500177#ifneq ($(TARGET_USERIMAGES_USE_EXT4), true)
178# LOCAL_CFLAGS += -DUSE_EXT4
179# LOCAL_C_INCLUDES += system/extras/ext4_utils
180# LOCAL_SHARED_LIBRARIES += libext4_utils
181# ifneq ($(wildcard external/lz4/Android.mk),)
182# LOCAL_STATIC_LIBRARIES += liblz4
183# endif
184#endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700185
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700186ifeq ($(AB_OTA_UPDATER),true)
187 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500188 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonker58f21322018-08-24 11:17:36 -0500189 LOCAL_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700190endif
191
Ying Wang5a50b1b2015-03-10 11:56:56 -0700192LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800193
Dees_Troy1669f892013-09-04 18:35:08 +0000194#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500195# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000196#else
197# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
198#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500199ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
200 LOCAL_SRC_FILES += BasePartition.cpp
201else
202 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
203endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800204
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700205LOCAL_C_INCLUDES += system/extras/ext4_utils
206
that0e2140e2016-08-10 21:04:26 +0200207tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
208ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
209 tw_git_revision := $(tw_git_revision)-dirty
210endif
211LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
212
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500213ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
214ifeq ($(TW_EXCLUDE_MTP),)
215 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
216endif
217else
218ifeq ($(TW_EXCLUDE_MTP),)
219 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
220 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
221endif
222endif
223
Dees_Troy51a0e822012-09-05 15:24:24 -0400224#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400225ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400226 LOCAL_CFLAGS += -DTW_HAS_MTP
227endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700228ifneq ($(TW_NO_SCREEN_TIMEOUT),)
229 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
230endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400231ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
232 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
233endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400234ifneq ($(RECOVERY_SDCARD_ON_DATA),)
235 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
236endif
237ifneq ($(TW_INCLUDE_DUMLOCK),)
238 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
239endif
240ifneq ($(TW_INTERNAL_STORAGE_PATH),)
241 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
242endif
243ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
244 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
245endif
246ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
247 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
248endif
249ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
250 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
251endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530252ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
253 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
254endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400255ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
256 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
257endif
258ifeq ($(TW_NO_REBOOT_RECOVERY), true)
259 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
260endif
261ifeq ($(TW_NO_BATT_PERCENT), true)
262 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
263endif
Jenkins1710bf22014-10-02 20:22:21 -0400264ifeq ($(TW_NO_CPU_TEMP), true)
265 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
266endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400267ifneq ($(TW_CUSTOM_POWER_BUTTON),)
268 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
269endif
270ifeq ($(TW_ALWAYS_RMRF), true)
271 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
272endif
273ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
274 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
275endif
276ifeq ($(TW_NO_USB_STORAGE), true)
277 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
278endif
279ifeq ($(TW_INCLUDE_INJECTTWRP), true)
280 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
281endif
282ifeq ($(TW_INCLUDE_BLOBPACK), true)
283 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
284endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400285ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
286 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
287endif
288ifneq ($(BOARD_UMS_LUNFILE),)
289 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
290endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400291ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
292 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
293endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200294ifeq ($(TW_HAS_EDL_MODE), true)
295 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
296endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500297ifeq ($(TW_NO_SCREEN_BLANK), true)
298 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
299endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400300ifeq ($(TW_SDEXT_NO_EXT4), true)
301 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
302endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400303ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
304 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
305endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000306ifeq ($(TW_NO_EXFAT_FUSE), true)
307 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
308endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400309ifeq ($(TW_NO_HAPTICS), true)
310 LOCAL_CFLAGS += -DTW_NO_HAPTICS
311endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400312ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600313 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400314endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600315ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600316 TW_INCLUDE_CRYPTO := true
317endif
318ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600319 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker66a19492015-12-10 10:19:45 -0600320 LOCAL_SHARED_LIBRARIES += libcryptfslollipop libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500321 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600322 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
323 TW_INCLUDE_CRYPTO_FBE := true
324 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
325 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500326 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
327 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
328 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600329 endif
nkk7171c6c502017-01-05 23:55:05 +0200330 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
331 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
332 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
333 LOCAL_STATIC_LIBRARIES += libvolddecrypt
334 endif
335 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600336endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500337WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500338 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700339ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
340 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
341endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200342ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
343 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
344endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600345ifneq ($(TW_BRIGHTNESS_PATH),)
346 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
347endif
xNUTxe85f02d2014-07-18 01:30:58 +0200348ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
349 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
350endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600351ifneq ($(TW_MAX_BRIGHTNESS),)
352 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
353endif
Greg Wallace36ade452015-11-08 13:54:25 -0500354ifneq ($(TW_DEFAULT_BRIGHTNESS),)
355 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
356endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000357ifneq ($(TW_CUSTOM_BATTERY_PATH),)
358 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
359endif
Jenkins1710bf22014-10-02 20:22:21 -0400360ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
361 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
362endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000363ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
364 LOCAL_SHARED_LIBRARIES += libopenaes
365else
366 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
367endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100368ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300369 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
370 LOCAL_CFLAGS += -DQCOM_RTC_FIX
371 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100372 LOCAL_CFLAGS += -DQCOM_RTC_FIX
373 endif
374else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
375 LOCAL_CFLAGS += -DQCOM_RTC_FIX
376endif
Matt Mower6883d732014-03-20 17:28:13 -0500377ifneq ($(TW_NO_LEGACY_PROPS),)
378 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
379endif
Dees Troy4159aed2014-02-28 17:24:43 +0000380ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
381 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
382endif
Matt Mowerec009e82015-01-30 13:00:49 -0600383ifneq ($(TARGET_RECOVERY_INITRC),)
384 TW_EXCLUDE_DEFAULT_USB_INIT := true
385endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500386ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
387 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
388endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500389ifneq ($(TW_DEFAULT_LANGUAGE),)
390 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
391else
392 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
393endif
Phoenix591e444d112018-02-03 07:23:54 +0000394ifneq ($(TW_CLOCK_OFFSET),)
395 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
396endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500397LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500398 dump_image \
399 erase_image \
400 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500401 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500402 pigz \
403 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500404 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500405 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600406 fsck.fat \
407 fatlabel \
408 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500409 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500410 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500411 libbootloader_message_twrp \
412 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500413 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500414
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600415ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500416 ifneq ($(TARGET_ARCH), x86_64)
417 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
418 else
419 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
420 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600421else
422 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600423endif
424ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600425 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
426 LOCAL_POST_INSTALL_CMD := \
427 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
428 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
429 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500430else
431 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500432 LOCAL_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500433 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800434 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500435 LOCAL_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800436 endif
437 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500438 LOCAL_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800439 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600440endif
Matt Mower84057612017-01-08 13:32:18 -0600441
Matt Mower20172792014-11-14 10:54:03 -0600442ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500443 LOCAL_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600444 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500445 LOCAL_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600446 endif
Matt Mower20172792014-11-14 10:54:03 -0600447endif
Matt Mower031163b2014-11-01 15:13:03 -0500448ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600449 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500450 LOCAL_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600451 else
Ethan Yonker58f21322018-08-24 11:17:36 -0500452 LOCAL_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600453 endif
Matt Mower031163b2014-11-01 15:13:03 -0500454endif
455ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500456 LOCAL_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500457endif
458ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500459 LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500460 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
461 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
462endif
Matt Mower031163b2014-11-01 15:13:03 -0500463ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500464 LOCAL_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500465endif
466ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500467 LOCAL_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500468endif
469ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500470 LOCAL_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500471endif
472ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500473 LOCAL_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500474endif
Matt Mowerec009e82015-01-30 13:00:49 -0600475ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500476 LOCAL_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600477endif
Captain Throwback1f127752016-01-19 17:30:20 -0500478ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500479 LOCAL_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600480 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500481 LOCAL_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600482 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500483endif
Matt Mower031163b2014-11-01 15:13:03 -0500484# Allow devices to specify device-specific recovery dependencies
485ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500486 LOCAL_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500487endif
Dees Troy3454ade2015-01-20 19:21:04 +0000488LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
489LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500490ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400491ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500492 LOCAL_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500493 mount.ntfs \
494 fsck.ntfs \
495 mkfs.ntfs
496else
Ethan Yonker58f21322018-08-24 11:17:36 -0500497 LOCAL_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500498 ntfs-3g \
499 ntfsfix \
500 mkntfs
501endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500502endif
Matt Mower58294912015-12-10 11:54:28 -0600503ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
504ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500505 LOCAL_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600506 fsck.f2fs \
507 mkfs.f2fs
508endif
Ethan Yonker93382822018-11-01 15:25:31 -0500509ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
510 LOCAL_REQUIRED_MODULES += sload.f2fs
511endif
Matt Mower58294912015-12-10 11:54:28 -0600512endif
Matt Mower031163b2014-11-01 15:13:03 -0500513
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100514ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500515 LOCAL_REQUIRED_MODULES += file_contexts_text
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100516else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
517 LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600518endif
519
Mark Salyzyn13aca592016-03-09 14:58:16 -0800520ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
oshmoun9220dba2018-11-24 11:26:01 +0100521LOCAL_REQUIRED_MODULES += recovery-persist recovery-refresh
Mark Salyzyn13aca592016-03-09 14:58:16 -0800522endif
523
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800524include $(BUILD_EXECUTABLE)
525
Matt Mowerd821c962017-02-15 12:36:18 -0600526# Symlink for file_contexts
527include $(CLEAR_VARS)
528
Captain Throwback3184b2f2017-03-07 12:07:40 -0500529LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600530LOCAL_MODULE_TAGS := optional
Captain Throwback3184b2f2017-03-07 12:07:40 -0500531LOCAL_REQUIRED_MODULES := file_contexts.bin
Matt Mowerd821c962017-02-15 12:36:18 -0600532LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500533 $(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 -0600534
535include $(BUILD_PHONY_PACKAGE)
536
Ethan Yonker5c933692014-04-04 11:26:32 -0500537ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800538include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400539# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
540BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600541exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500542
Ethan Yonkera60c7862016-02-25 15:32:06 -0600543# Having /sbin/modprobe present on 32 bit devices with can cause a massive
544# performance problem if the kernel has CONFIG_MODULES=y
545ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
546 ifneq ($(TARGET_ARCH), arm64)
547 ifneq ($(TARGET_ARCH), x86_64)
548 exclude += modprobe
549 endif
550 endif
551endif
552
Matt Mower81742fb2014-09-01 14:40:52 -0500553# If busybox does not have restorecon, assume it does not have SELinux support.
554# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600555ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
556 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000557endif
Matt Mower81742fb2014-09-01 14:40:52 -0500558
559RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
560RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400561$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
562$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
563 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
564 @mkdir -p $(dir $@)
565 @rm -rf $@
566 $(hide) ln -sf $(BUSYBOX_BINARY) $@
567
Matt Mower031163b2014-11-01 15:13:03 -0500568include $(CLEAR_VARS)
569LOCAL_MODULE := busybox_symlinks
570LOCAL_MODULE_TAGS := optional
571LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000572ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
573ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
574endif
Matt Mower031163b2014-11-01 15:13:03 -0500575include $(BUILD_PHONY_PACKAGE)
576RECOVERY_BUSYBOX_SYMLINKS :=
577endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400578
Mark Salyzyn13aca592016-03-09 14:58:16 -0800579# recovery-persist (system partition dynamic executable run after /data mounts)
580# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500581ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
582 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500583 LOCAL_SRC_FILES := \
584 recovery-persist.cpp \
585 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500586 LOCAL_MODULE := recovery-persist
587 LOCAL_SHARED_LIBRARIES := liblog libbase
588 LOCAL_CFLAGS := -Werror
589 LOCAL_INIT_RC := recovery-persist.rc
590 include $(BUILD_EXECUTABLE)
591endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800592
Mark Salyzyn13aca592016-03-09 14:58:16 -0800593# recovery-refresh (system partition dynamic executable run at init)
594# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500595ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
596 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500597 LOCAL_SRC_FILES := \
598 recovery-refresh.cpp \
599 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500600 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500601 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500602 LOCAL_CFLAGS := -Werror
603 LOCAL_INIT_RC := recovery-refresh.rc
604 include $(BUILD_EXECUTABLE)
605endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800606
Ethan Yonker34ae4832016-08-24 15:32:18 -0500607# shared libfusesideload
608# ===============================
609include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500610LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500611LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500612LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
613
614LOCAL_MODULE_TAGS := optional
615LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500616LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500617ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500618 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
619 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
620 LOCAL_CFLAGS += -DUSE_MINCRYPT
621else
622 LOCAL_SHARED_LIBRARIES += libcrypto
623endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500624ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
625 LOCAL_SRC_FILES := fuse_sideload22.cpp
626 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
627else
628 LOCAL_SRC_FILES := fuse_sideload.cpp
629endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500630include $(BUILD_SHARED_LIBRARY)
631
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600632# static libfusesideload
633# =============================== (required to fix build errors in 8.1 due to use by tests)
634include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600635LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500636LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600637LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
638
639LOCAL_MODULE_TAGS := optional
640LOCAL_MODULE := libfusesideload
641LOCAL_SHARED_LIBRARIES := libcutils libc
642ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
643 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
644 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
645 LOCAL_CFLAGS += -DUSE_MINCRYPT
646else
647 LOCAL_STATIC_LIBRARIES += libcrypto_static
648endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500649ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
650 LOCAL_SRC_FILES := fuse_sideload22.cpp
651 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
652else
653 LOCAL_SRC_FILES := fuse_sideload.cpp
654endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800655include $(BUILD_STATIC_LIBRARY)
656
Elliott Hughes63a31922016-06-09 17:41:22 -0700657# libmounts (static library)
658# ===============================
659include $(CLEAR_VARS)
660LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700661LOCAL_CFLAGS := \
662 -Wall \
663 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700664LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700665LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700666include $(BUILD_STATIC_LIBRARY)
667
Tao Bao62e0bc72017-04-10 16:55:57 -0700668# librecovery (static library)
669# ===============================
670include $(CLEAR_VARS)
671LOCAL_SRC_FILES := \
672 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700673LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700674LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700675
676ifeq ($(AB_OTA_UPDATER),true)
677 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
678endif
679
Tao Bao62e0bc72017-04-10 16:55:57 -0700680LOCAL_MODULE := librecovery
681LOCAL_STATIC_LIBRARIES := \
682 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700683 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700684 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700685 libcrypto_utils \
686 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700687 libbase \
688 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700689
690include $(BUILD_STATIC_LIBRARY)
691
Ethan Yonker34ae4832016-08-24 15:32:18 -0500692# shared libaosprecovery for Apache code
693# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000694include $(CLEAR_VARS)
695
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800696
Dees_Troy2673cec2013-04-02 20:22:16 +0000697LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500698LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500699LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500700LOCAL_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 -0600701LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
702LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500703ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500704 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600705 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500706 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500707else
708 LOCAL_SHARED_LIBRARIES += libc++
709endif
710ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
711 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600712 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500713 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500714 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
715else
Ethan Yonker941a8992016-12-05 09:04:30 -0600716 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500717 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500718 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500719endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700720
Ethan Yonker941a8992016-12-05 09:04:30 -0600721ifeq ($(AB_OTA_UPDATER),true)
722 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
723endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500724ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500725 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500726 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
727 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500728 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
729 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
730 # Android 9.0 needs c++17 for libvintf
731 LOCAL_CPPFLAGS += -std=c++17
732 # Android 9.0's libvintf also needs this library
733 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
734 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800735else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500736 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800737endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000738
739include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800740# libverifier (static library)
741# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700742include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700743LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700744LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700745LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700746 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700747 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800748LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700749 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800750 libcrypto_utils \
751 libcrypto \
752 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700753LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800754include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800755
Tao Bao016120f2017-08-02 17:11:04 -0700756# Wear default device
757# ===============================
758include $(CLEAR_VARS)
759LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700760LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700761
762# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
763LOCAL_MODULE := librecovery_ui_wear
764
765include $(BUILD_STATIC_LIBRARY)
766
Luke Songa44dba72017-06-12 16:08:33 -0700767# vr headset default device
768# ===============================
769include $(CLEAR_VARS)
770
771LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700772LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700773
774# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
775LOCAL_MODULE := librecovery_ui_vr
776
777include $(BUILD_STATIC_LIBRARY)
778
Dees_Troy51a0e822012-09-05 15:24:24 -0400779commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600780
Ethan Yonker58f21322018-08-24 11:17:36 -0500781# $(LOCAL_PATH)/edify/Android.mk
782# $(LOCAL_PATH)/otafault/Android.mk
783# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700784include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500785 $(commands_TWRP_local_path)/boot_control/Android.mk \
786 $(commands_TWRP_local_path)/tests/Android.mk \
787 $(commands_TWRP_local_path)/tools/Android.mk \
788 $(commands_TWRP_local_path)/updater/Android.mk \
789 $(commands_TWRP_local_path)/update_verifier/Android.mk \
790 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
791
792ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
793include $(commands_TWRP_local_path)/bootloader_message/Android.mk
794endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400795
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500796ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
797 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
798else
799 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
800endif
801
Matt Mowerf746dbb2015-05-13 22:56:31 -0500802ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500803 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500804endif
805
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500806ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500807 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
808 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
809 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
810 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500811 include $(commands_TWRP_local_path)/minadbd/Android.mk \
812 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500813else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500814 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500815 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
816 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500817endif
818
Ethan Yonker58f21322018-08-24 11:17:36 -0500819#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400820#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500821include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
822 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
823 $(commands_TWRP_local_path)/gui/Android.mk \
824 $(commands_TWRP_local_path)/mmcutils/Android.mk \
825 $(commands_TWRP_local_path)/bmlutils/Android.mk \
826 $(commands_TWRP_local_path)/prebuilt/Android.mk \
827 $(commands_TWRP_local_path)/mtdutils/Android.mk \
828 $(commands_TWRP_local_path)/flashutils/Android.mk \
829 $(commands_TWRP_local_path)/pigz/Android.mk \
830 $(commands_TWRP_local_path)/libtar/Android.mk \
831 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
832 $(commands_TWRP_local_path)/libblkid/Android.mk \
833 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
834 $(commands_TWRP_local_path)/openaes/Android.mk \
835 $(commands_TWRP_local_path)/toolbox/Android.mk \
836 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500837 $(commands_TWRP_local_path)/minzip/Android.mk \
838 $(commands_TWRP_local_path)/dosfstools/Android.mk \
839 $(commands_TWRP_local_path)/etc/Android.mk \
840 $(commands_TWRP_local_path)/toybox/Android.mk \
841 $(commands_TWRP_local_path)/simg2img/Android.mk \
842 $(commands_TWRP_local_path)/adbbu/Android.mk \
843 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
844 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
845 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600846
Ethan Yonker534d4e02016-08-26 10:05:03 -0500847ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500848 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500849endif
850
Ethan Yonker253368a2014-11-25 15:00:52 -0600851ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500852 include $(commands_TWRP_local_path)/crypto/lollipop/Android.mk
853 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600854 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500855 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600856 endif
nkk7171c6c502017-01-05 23:55:05 +0200857 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
858 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500859 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200860 endif
861 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500862 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600863endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100864ifeq ($(BUILD_ID), GINGERBREAD)
865 TW_NO_EXFAT := true
866endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000867ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500868 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
869 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
870 $(commands_TWRP_local_path)/fuse/Android.mk \
871 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600872 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500873 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600874 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400875endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500876ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500877 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500878endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500879
Talustus3019a912013-04-06 11:50:07 +0200880# FB2PNG
881ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500882 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200883endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500884
Matt Mower55c75ca2014-08-31 11:30:15 -0500885endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500886
887commands_TWRP_local_path :=