blob: e5220a5ed4bf457c2027f1f8dc36da6a5eb53302 [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
Michael Bestas0cc23762018-07-13 21:37:56 +030037ifeq ($(CM_PLATFORM_SDK_VERSION),)
38 CM_PLATFORM_SDK_VERSION := 0
39endif
40
Motorhead199175b6f662014-06-12 15:58:33 -070041include $(CLEAR_VARS)
42
Matt Mower1777cdc2015-09-26 15:56:56 -050043TWRES_PATH := /twres/
Dees Troy3454ade2015-01-20 19:21:04 +000044TWHTCD_PATH := $(TWRES_PATH)htcd/
45
Dees_Troy51a0e822012-09-05 15:24:24 -040046TARGET_RECOVERY_GUI := true
Joe Onorato6396e702012-05-31 23:21:46 -070047
bigbiff bigbiff584b9772016-12-08 21:21:17 -050048ifneq ($(TW_DEVICE_VERSION),)
49 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
50else
51 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
52endif
dianlujitao4879b372018-12-03 18:45:47 +080053LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbiff bigbiff584b9772016-12-08 21:21:17 -050054
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000056 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060057 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050058 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060059 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050060 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040061 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040062 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040063 partition.cpp \
64 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060065 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040066 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040067 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040068 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000069 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040070 tarWrite.c \
71 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040072
Dees_Troya58bead2012-09-27 09:49:29 -040073ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040074 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
75endif
76
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077LOCAL_MODULE := recovery
78
Dees_Troy51a0e822012-09-05 15:24:24 -040079#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080080
Ethan Yonker34ae4832016-08-24 15:32:18 -050081#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060082#ifeq ($(HOST_OS),linux)
83#LOCAL_REQUIRED_MODULES := mkfs.f2fs
84#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050085#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070086
Doug Zongkere08991e2010-02-02 13:09:52 -080087RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080088RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070089LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080090LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070091LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070092
Dees_Troy51a0e822012-09-05 15:24:24 -040093#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +000094# libext4_utils_static \
95# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -040096# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +000097# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -040098# libmtdutils \
99# libmincrypt \
100# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +0000101# libminui \
102# libpixelflinger_static \
103# libpng \
104# libfs_mgr \
105# libcutils \
106# liblog \
107# libselinux \
108# libstdc++ \
109# libm \
110# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400111
Dan Albert1ddd3502015-02-18 15:58:15 -0800112LOCAL_C_INCLUDES += \
113 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500114 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800115 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500116 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500117 external/zlib \
118 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100119
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400120LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800121ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400122 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500123 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400124else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500125 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800126endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400127
128LOCAL_STATIC_LIBRARIES :=
129LOCAL_SHARED_LIBRARIES :=
130
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600131LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500132LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
133LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500134
Xing0af1ac12015-11-27 11:19:37 -0800135ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500136 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400137 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500138endif
139ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
140 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500141 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
142 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500143else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500144 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500145endif
146
147ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
148 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500149endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700150
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500151ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
152 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500153 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500154else
155 LOCAL_SHARED_LIBRARIES += libminzip
156 LOCAL_CFLAGS += -DUSE_MINZIP
157endif
158
Dees_Troy4546fe72013-01-10 14:33:27 +0000159ifneq ($(wildcard system/core/libsparse/Android.mk),)
160LOCAL_SHARED_LIBRARIES += libsparse
161endif
162
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500163ifeq ($(TW_OEM_BUILD),true)
164 LOCAL_CFLAGS += -DTW_OEM_BUILD
165 BOARD_HAS_NO_REAL_SDCARD := true
166 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400167 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500168endif
Yabin Cui99281df2016-02-17 12:21:52 -0800169
Doug Zongker49c73a72010-06-29 17:36:28 -0700170ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500171 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
172 LOCAL_CFLAGS += -DUSE_EXT4
173 LOCAL_C_INCLUDES += system/extras/ext4_utils
174 LOCAL_SHARED_LIBRARIES += libext4_utils
175 ifneq ($(wildcard external/lz4/Android.mk),)
176 #LOCAL_STATIC_LIBRARIES += liblz4
177 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700178 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700179endif
Matt Mower87413642017-01-17 21:14:46 -0600180LOCAL_C_INCLUDES += external/libselinux/include
181LOCAL_SHARED_LIBRARIES += libselinux
Doug Zongker49c73a72010-06-29 17:36:28 -0700182
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700183ifeq ($(AB_OTA_UPDATER),true)
184 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500185 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonker58f21322018-08-24 11:17:36 -0500186 LOCAL_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700187endif
188
Ying Wang5a50b1b2015-03-10 11:56:56 -0700189LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800190
Dees_Troy1669f892013-09-04 18:35:08 +0000191#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500192# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000193#else
194# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
195#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500196ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
197 LOCAL_SRC_FILES += BasePartition.cpp
198else
199 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
200endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700202LOCAL_C_INCLUDES += system/extras/ext4_utils
203
that0e2140e2016-08-10 21:04:26 +0200204tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
205ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
206 tw_git_revision := $(tw_git_revision)-dirty
207endif
208LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
209
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500210ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
211ifeq ($(TW_EXCLUDE_MTP),)
212 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
213endif
214else
215ifeq ($(TW_EXCLUDE_MTP),)
216 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
217 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
218endif
219endif
220
Dees_Troy51a0e822012-09-05 15:24:24 -0400221#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400222ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400223 LOCAL_CFLAGS += -DTW_HAS_MTP
224endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700225ifneq ($(TW_NO_SCREEN_TIMEOUT),)
226 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
227endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400228ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
229 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
230endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400231ifneq ($(RECOVERY_SDCARD_ON_DATA),)
232 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
233endif
234ifneq ($(TW_INCLUDE_DUMLOCK),)
235 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
236endif
237ifneq ($(TW_INTERNAL_STORAGE_PATH),)
238 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
239endif
240ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
241 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
242endif
243ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
244 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
245endif
246ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
247 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
248endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530249ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
250 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
251endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400252ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
253 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
254endif
255ifeq ($(TW_NO_REBOOT_RECOVERY), true)
256 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
257endif
258ifeq ($(TW_NO_BATT_PERCENT), true)
259 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
260endif
Jenkins1710bf22014-10-02 20:22:21 -0400261ifeq ($(TW_NO_CPU_TEMP), true)
262 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
263endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400264ifneq ($(TW_CUSTOM_POWER_BUTTON),)
265 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
266endif
267ifeq ($(TW_ALWAYS_RMRF), true)
268 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
269endif
270ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
271 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
272endif
273ifeq ($(TW_NO_USB_STORAGE), true)
274 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
275endif
276ifeq ($(TW_INCLUDE_INJECTTWRP), true)
277 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
278endif
279ifeq ($(TW_INCLUDE_BLOBPACK), true)
280 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
281endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400282ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
283 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
284endif
285ifneq ($(BOARD_UMS_LUNFILE),)
286 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
287endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400288ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
289 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
290endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200291ifeq ($(TW_HAS_EDL_MODE), true)
292 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
293endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500294ifeq ($(TW_NO_SCREEN_BLANK), true)
295 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
296endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400297ifeq ($(TW_SDEXT_NO_EXT4), true)
298 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
299endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400300ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
301 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
302endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000303ifeq ($(TW_NO_EXFAT_FUSE), true)
304 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
305endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400306ifeq ($(TW_NO_HAPTICS), true)
307 LOCAL_CFLAGS += -DTW_NO_HAPTICS
308endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400309ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600310 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400311endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600312ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600313 TW_INCLUDE_CRYPTO := true
314endif
315ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600316 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500317 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500318 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600319 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
320 TW_INCLUDE_CRYPTO_FBE := true
321 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
322 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500323 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
324 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
325 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600326 endif
nkk7171c6c502017-01-05 23:55:05 +0200327 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
328 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
329 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
330 LOCAL_STATIC_LIBRARIES += libvolddecrypt
331 endif
332 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600333endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500334WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500335 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700336ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
337 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
338endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200339ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
340 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
341endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600342ifneq ($(TW_BRIGHTNESS_PATH),)
343 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
344endif
xNUTxe85f02d2014-07-18 01:30:58 +0200345ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
346 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
347endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600348ifneq ($(TW_MAX_BRIGHTNESS),)
349 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
350endif
Greg Wallace36ade452015-11-08 13:54:25 -0500351ifneq ($(TW_DEFAULT_BRIGHTNESS),)
352 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
353endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000354ifneq ($(TW_CUSTOM_BATTERY_PATH),)
355 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
356endif
Jenkins1710bf22014-10-02 20:22:21 -0400357ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
358 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
359endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000360ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
361 LOCAL_SHARED_LIBRARIES += libopenaes
362else
363 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
364endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100365ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300366 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
367 LOCAL_CFLAGS += -DQCOM_RTC_FIX
368 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100369 LOCAL_CFLAGS += -DQCOM_RTC_FIX
370 endif
371else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
372 LOCAL_CFLAGS += -DQCOM_RTC_FIX
373endif
Matt Mower6883d732014-03-20 17:28:13 -0500374ifneq ($(TW_NO_LEGACY_PROPS),)
375 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
376endif
Dees Troy4159aed2014-02-28 17:24:43 +0000377ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
378 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
379endif
Matt Mowerec009e82015-01-30 13:00:49 -0600380ifneq ($(TARGET_RECOVERY_INITRC),)
381 TW_EXCLUDE_DEFAULT_USB_INIT := true
382endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500383ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
384 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
385endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500386ifneq ($(TW_DEFAULT_LANGUAGE),)
387 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
388else
389 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
390endif
Phoenix591e444d112018-02-03 07:23:54 +0000391ifneq ($(TW_CLOCK_OFFSET),)
392 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
393endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500394LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500395 dump_image \
396 erase_image \
397 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500398 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500399 pigz \
400 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500401 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500402 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600403 fsck.fat \
404 fatlabel \
405 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500406 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500407 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500408 libbootloader_message_twrp \
409 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500410 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500411
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600412ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500413 ifneq ($(TARGET_ARCH), x86_64)
414 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
415 else
416 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
417 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600418else
419 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600420endif
421ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600422 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
423 LOCAL_POST_INSTALL_CMD := \
424 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
425 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
426 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500427else
428 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500429 LOCAL_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500430 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800431 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500432 LOCAL_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800433 endif
434 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500435 LOCAL_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800436 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600437endif
Matt Mower84057612017-01-08 13:32:18 -0600438
Matt Mower20172792014-11-14 10:54:03 -0600439ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500440 LOCAL_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600441 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500442 LOCAL_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600443 endif
Matt Mower20172792014-11-14 10:54:03 -0600444endif
Matt Mower031163b2014-11-01 15:13:03 -0500445ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600446 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500447 LOCAL_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600448 else
Ethan Yonker58f21322018-08-24 11:17:36 -0500449 LOCAL_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600450 endif
Matt Mower031163b2014-11-01 15:13:03 -0500451endif
452ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500453 LOCAL_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500454endif
455ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500456 LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500457 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
458 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
459endif
Matt Mower031163b2014-11-01 15:13:03 -0500460ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500461 LOCAL_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500462endif
463ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500464 LOCAL_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500465endif
466ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500467 LOCAL_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500468endif
469ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500470 LOCAL_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500471endif
Matt Mowerec009e82015-01-30 13:00:49 -0600472ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500473 LOCAL_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600474endif
Captain Throwback1f127752016-01-19 17:30:20 -0500475ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500476 LOCAL_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600477 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500478 LOCAL_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600479 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500480endif
Matt Mower031163b2014-11-01 15:13:03 -0500481# Allow devices to specify device-specific recovery dependencies
482ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500483 LOCAL_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500484endif
Dees Troy3454ade2015-01-20 19:21:04 +0000485LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
486LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500487ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400488ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500489 LOCAL_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500490 mount.ntfs \
491 fsck.ntfs \
492 mkfs.ntfs
493else
Ethan Yonker58f21322018-08-24 11:17:36 -0500494 LOCAL_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500495 ntfs-3g \
496 ntfsfix \
497 mkntfs
498endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500499endif
Matt Mower58294912015-12-10 11:54:28 -0600500ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
501ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500502 LOCAL_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600503 fsck.f2fs \
504 mkfs.f2fs
505endif
Ethan Yonker93382822018-11-01 15:25:31 -0500506ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
507 LOCAL_REQUIRED_MODULES += sload.f2fs
508endif
Matt Mower58294912015-12-10 11:54:28 -0600509endif
Matt Mower031163b2014-11-01 15:13:03 -0500510
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100511ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500512 LOCAL_REQUIRED_MODULES += file_contexts_text
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100513else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
514 LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600515endif
516
Mark Salyzyn13aca592016-03-09 14:58:16 -0800517ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
oshmoun9220dba2018-11-24 11:26:01 +0100518LOCAL_REQUIRED_MODULES += recovery-persist recovery-refresh
Mark Salyzyn13aca592016-03-09 14:58:16 -0800519endif
520
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800521include $(BUILD_EXECUTABLE)
522
Matt Mowerd821c962017-02-15 12:36:18 -0600523# Symlink for file_contexts
524include $(CLEAR_VARS)
525
Captain Throwback3184b2f2017-03-07 12:07:40 -0500526LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600527LOCAL_MODULE_TAGS := optional
Captain Throwback3184b2f2017-03-07 12:07:40 -0500528LOCAL_REQUIRED_MODULES := file_contexts.bin
Matt Mowerd821c962017-02-15 12:36:18 -0600529LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500530 $(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 -0600531
532include $(BUILD_PHONY_PACKAGE)
533
Ethan Yonker5c933692014-04-04 11:26:32 -0500534ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800535include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400536# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
537BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600538exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500539
Ethan Yonkera60c7862016-02-25 15:32:06 -0600540# Having /sbin/modprobe present on 32 bit devices with can cause a massive
541# performance problem if the kernel has CONFIG_MODULES=y
542ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
543 ifneq ($(TARGET_ARCH), arm64)
544 ifneq ($(TARGET_ARCH), x86_64)
545 exclude += modprobe
546 endif
547 endif
548endif
549
Matt Mower81742fb2014-09-01 14:40:52 -0500550# If busybox does not have restorecon, assume it does not have SELinux support.
551# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600552ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
553 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000554endif
Matt Mower81742fb2014-09-01 14:40:52 -0500555
556RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
557RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400558$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
559$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
560 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
561 @mkdir -p $(dir $@)
562 @rm -rf $@
563 $(hide) ln -sf $(BUSYBOX_BINARY) $@
564
Matt Mower031163b2014-11-01 15:13:03 -0500565include $(CLEAR_VARS)
566LOCAL_MODULE := busybox_symlinks
567LOCAL_MODULE_TAGS := optional
568LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000569ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
570ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
571endif
Matt Mower031163b2014-11-01 15:13:03 -0500572include $(BUILD_PHONY_PACKAGE)
573RECOVERY_BUSYBOX_SYMLINKS :=
574endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400575
Mark Salyzyn13aca592016-03-09 14:58:16 -0800576# recovery-persist (system partition dynamic executable run after /data mounts)
577# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500578ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
579 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500580 LOCAL_SRC_FILES := \
581 recovery-persist.cpp \
582 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500583 LOCAL_MODULE := recovery-persist
584 LOCAL_SHARED_LIBRARIES := liblog libbase
585 LOCAL_CFLAGS := -Werror
586 LOCAL_INIT_RC := recovery-persist.rc
587 include $(BUILD_EXECUTABLE)
588endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800589
Mark Salyzyn13aca592016-03-09 14:58:16 -0800590# recovery-refresh (system partition dynamic executable run at init)
591# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500592ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
593 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500594 LOCAL_SRC_FILES := \
595 recovery-refresh.cpp \
596 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500597 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500598 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500599 LOCAL_CFLAGS := -Werror
600 LOCAL_INIT_RC := recovery-refresh.rc
601 include $(BUILD_EXECUTABLE)
602endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800603
Ethan Yonker34ae4832016-08-24 15:32:18 -0500604# shared libfusesideload
605# ===============================
606include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500607LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500608LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500609LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
610
611LOCAL_MODULE_TAGS := optional
612LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500613LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500614ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500615 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
616 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
617 LOCAL_CFLAGS += -DUSE_MINCRYPT
618else
619 LOCAL_SHARED_LIBRARIES += libcrypto
620endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500621ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
622 LOCAL_SRC_FILES := fuse_sideload22.cpp
623 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
624else
625 LOCAL_SRC_FILES := fuse_sideload.cpp
626endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500627include $(BUILD_SHARED_LIBRARY)
628
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600629# static libfusesideload
630# =============================== (required to fix build errors in 8.1 due to use by tests)
631include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600632LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500633LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600634LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
635
636LOCAL_MODULE_TAGS := optional
637LOCAL_MODULE := libfusesideload
638LOCAL_SHARED_LIBRARIES := libcutils libc
639ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
640 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
641 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
642 LOCAL_CFLAGS += -DUSE_MINCRYPT
643else
644 LOCAL_STATIC_LIBRARIES += libcrypto_static
645endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500646ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
647 LOCAL_SRC_FILES := fuse_sideload22.cpp
648 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
649else
650 LOCAL_SRC_FILES := fuse_sideload.cpp
651endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800652include $(BUILD_STATIC_LIBRARY)
653
Elliott Hughes63a31922016-06-09 17:41:22 -0700654# libmounts (static library)
655# ===============================
656include $(CLEAR_VARS)
657LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700658LOCAL_CFLAGS := \
659 -Wall \
660 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700661LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700662LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700663include $(BUILD_STATIC_LIBRARY)
664
Tao Bao62e0bc72017-04-10 16:55:57 -0700665# librecovery (static library)
666# ===============================
667include $(CLEAR_VARS)
668LOCAL_SRC_FILES := \
669 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700670LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700671LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700672
673ifeq ($(AB_OTA_UPDATER),true)
674 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
675endif
676
Tao Bao62e0bc72017-04-10 16:55:57 -0700677LOCAL_MODULE := librecovery
678LOCAL_STATIC_LIBRARIES := \
679 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700680 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700681 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700682 libcrypto_utils \
683 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700684 libbase \
685 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700686
687include $(BUILD_STATIC_LIBRARY)
688
Ethan Yonker34ae4832016-08-24 15:32:18 -0500689# shared libaosprecovery for Apache code
690# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000691include $(CLEAR_VARS)
692
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800693
Dees_Troy2673cec2013-04-02 20:22:16 +0000694LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500695LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500696LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500697LOCAL_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 -0600698LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
699LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500700ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500701 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600702 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500703 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500704else
705 LOCAL_SHARED_LIBRARIES += libc++
706endif
707ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
708 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600709 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500710 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500711 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
712else
Ethan Yonker941a8992016-12-05 09:04:30 -0600713 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500714 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500715 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500716endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700717
Ethan Yonker941a8992016-12-05 09:04:30 -0600718ifeq ($(AB_OTA_UPDATER),true)
719 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
720endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500721ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500722 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500723 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
724 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500725 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
726 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
727 # Android 9.0 needs c++17 for libvintf
728 LOCAL_CPPFLAGS += -std=c++17
729 # Android 9.0's libvintf also needs this library
730 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
731 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800732else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500733 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800734endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000735
736include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800737# libverifier (static library)
738# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700739include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700740LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700741LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700742LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700743 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700744 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800745LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700746 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800747 libcrypto_utils \
748 libcrypto \
749 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700750LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800751include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800752
Tao Bao016120f2017-08-02 17:11:04 -0700753# Wear default device
754# ===============================
755include $(CLEAR_VARS)
756LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700757LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700758
759# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
760LOCAL_MODULE := librecovery_ui_wear
761
762include $(BUILD_STATIC_LIBRARY)
763
Luke Songa44dba72017-06-12 16:08:33 -0700764# vr headset default device
765# ===============================
766include $(CLEAR_VARS)
767
768LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700769LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700770
771# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
772LOCAL_MODULE := librecovery_ui_vr
773
774include $(BUILD_STATIC_LIBRARY)
775
Dees_Troy51a0e822012-09-05 15:24:24 -0400776commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600777
Ethan Yonker58f21322018-08-24 11:17:36 -0500778# $(LOCAL_PATH)/edify/Android.mk
779# $(LOCAL_PATH)/otafault/Android.mk
780# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700781include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500782 $(commands_TWRP_local_path)/boot_control/Android.mk \
783 $(commands_TWRP_local_path)/tests/Android.mk \
784 $(commands_TWRP_local_path)/tools/Android.mk \
785 $(commands_TWRP_local_path)/updater/Android.mk \
786 $(commands_TWRP_local_path)/update_verifier/Android.mk \
787 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
788
789ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
790include $(commands_TWRP_local_path)/bootloader_message/Android.mk
791endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400792
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500793ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
794 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
795else
796 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
797endif
798
Matt Mowerf746dbb2015-05-13 22:56:31 -0500799ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500800 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500801endif
802
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500803ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500804 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
805 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
806 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
807 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500808 include $(commands_TWRP_local_path)/minadbd/Android.mk \
809 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500810else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500811 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500812 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
813 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500814endif
815
Ethan Yonker58f21322018-08-24 11:17:36 -0500816#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400817#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500818include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
819 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
820 $(commands_TWRP_local_path)/gui/Android.mk \
821 $(commands_TWRP_local_path)/mmcutils/Android.mk \
822 $(commands_TWRP_local_path)/bmlutils/Android.mk \
823 $(commands_TWRP_local_path)/prebuilt/Android.mk \
824 $(commands_TWRP_local_path)/mtdutils/Android.mk \
825 $(commands_TWRP_local_path)/flashutils/Android.mk \
826 $(commands_TWRP_local_path)/pigz/Android.mk \
827 $(commands_TWRP_local_path)/libtar/Android.mk \
828 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
829 $(commands_TWRP_local_path)/libblkid/Android.mk \
830 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
831 $(commands_TWRP_local_path)/openaes/Android.mk \
832 $(commands_TWRP_local_path)/toolbox/Android.mk \
833 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500834 $(commands_TWRP_local_path)/minzip/Android.mk \
835 $(commands_TWRP_local_path)/dosfstools/Android.mk \
836 $(commands_TWRP_local_path)/etc/Android.mk \
837 $(commands_TWRP_local_path)/toybox/Android.mk \
838 $(commands_TWRP_local_path)/simg2img/Android.mk \
839 $(commands_TWRP_local_path)/adbbu/Android.mk \
840 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
841 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
842 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600843
Ethan Yonker534d4e02016-08-26 10:05:03 -0500844ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500845 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500846endif
847
Ethan Yonker253368a2014-11-25 15:00:52 -0600848ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500849 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500850 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600851 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500852 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600853 endif
nkk7171c6c502017-01-05 23:55:05 +0200854 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
855 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500856 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200857 endif
858 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500859 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600860endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100861ifeq ($(BUILD_ID), GINGERBREAD)
862 TW_NO_EXFAT := true
863endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000864ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500865 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
866 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
867 $(commands_TWRP_local_path)/fuse/Android.mk \
868 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600869 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500870 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600871 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400872endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500873ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500874 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500875endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500876
Talustus3019a912013-04-06 11:50:07 +0200877# FB2PNG
878ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500879 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200880endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500881
Matt Mower55c75ca2014-08-31 11:30:15 -0500882endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500883
884commands_TWRP_local_path :=