blob: 9ad3507d933f1fb95ead20c53564519082070ab3 [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
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500182#ifneq ($(TARGET_USERIMAGES_USE_EXT4), true)
183# LOCAL_CFLAGS += -DUSE_EXT4
184# LOCAL_C_INCLUDES += system/extras/ext4_utils
185# LOCAL_SHARED_LIBRARIES += libext4_utils
186# ifneq ($(wildcard external/lz4/Android.mk),)
187# LOCAL_STATIC_LIBRARIES += liblz4
188# endif
189#endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700190
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700191ifeq ($(AB_OTA_UPDATER),true)
192 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500193 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonker58f21322018-08-24 11:17:36 -0500194 LOCAL_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700195endif
196
Ying Wang5a50b1b2015-03-10 11:56:56 -0700197LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198
Dees_Troy1669f892013-09-04 18:35:08 +0000199#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500200# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000201#else
202# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
203#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500204ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
205 LOCAL_SRC_FILES += BasePartition.cpp
206else
207 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
208endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800209
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700210LOCAL_C_INCLUDES += system/extras/ext4_utils
211
that0e2140e2016-08-10 21:04:26 +0200212tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
213ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
214 tw_git_revision := $(tw_git_revision)-dirty
215endif
216LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
217
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500218ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
219ifeq ($(TW_EXCLUDE_MTP),)
220 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
221endif
222else
223ifeq ($(TW_EXCLUDE_MTP),)
224 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
225 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
226endif
227endif
228
Dees_Troy51a0e822012-09-05 15:24:24 -0400229#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400230ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400231 LOCAL_CFLAGS += -DTW_HAS_MTP
232endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700233ifneq ($(TW_NO_SCREEN_TIMEOUT),)
234 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
235endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400236ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
237 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
238endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400239ifneq ($(RECOVERY_SDCARD_ON_DATA),)
240 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
241endif
242ifneq ($(TW_INCLUDE_DUMLOCK),)
243 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
244endif
245ifneq ($(TW_INTERNAL_STORAGE_PATH),)
246 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
247endif
248ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
249 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
250endif
251ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
252 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
253endif
254ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
255 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
256endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530257ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
258 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
259endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400260ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
261 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
262endif
263ifeq ($(TW_NO_REBOOT_RECOVERY), true)
264 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
265endif
266ifeq ($(TW_NO_BATT_PERCENT), true)
267 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
268endif
Jenkins1710bf22014-10-02 20:22:21 -0400269ifeq ($(TW_NO_CPU_TEMP), true)
270 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
271endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400272ifneq ($(TW_CUSTOM_POWER_BUTTON),)
273 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
274endif
275ifeq ($(TW_ALWAYS_RMRF), true)
276 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
277endif
278ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
279 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
280endif
281ifeq ($(TW_NO_USB_STORAGE), true)
282 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
283endif
284ifeq ($(TW_INCLUDE_INJECTTWRP), true)
285 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
286endif
287ifeq ($(TW_INCLUDE_BLOBPACK), true)
288 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
289endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400290ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
291 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
292endif
293ifneq ($(BOARD_UMS_LUNFILE),)
294 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
295endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400296ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
297 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
298endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200299ifeq ($(TW_HAS_EDL_MODE), true)
300 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
301endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500302ifeq ($(TW_NO_SCREEN_BLANK), true)
303 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
304endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400305ifeq ($(TW_SDEXT_NO_EXT4), true)
306 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
307endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400308ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
309 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
310endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000311ifeq ($(TW_NO_EXFAT_FUSE), true)
312 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
313endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400314ifeq ($(TW_NO_HAPTICS), true)
315 LOCAL_CFLAGS += -DTW_NO_HAPTICS
316endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400317ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600318 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400319endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600320ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600321 TW_INCLUDE_CRYPTO := true
322endif
323ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600324 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500325 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500326 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600327 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
328 TW_INCLUDE_CRYPTO_FBE := true
329 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
330 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500331 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
332 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
333 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600334 endif
nkk7171c6c502017-01-05 23:55:05 +0200335 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
336 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
337 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
338 LOCAL_STATIC_LIBRARIES += libvolddecrypt
339 endif
340 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600341endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500342WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500343 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700344ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
345 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
346endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200347ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
348 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
349endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600350ifneq ($(TW_BRIGHTNESS_PATH),)
351 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
352endif
xNUTxe85f02d2014-07-18 01:30:58 +0200353ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
354 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
355endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600356ifneq ($(TW_MAX_BRIGHTNESS),)
357 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
358endif
Greg Wallace36ade452015-11-08 13:54:25 -0500359ifneq ($(TW_DEFAULT_BRIGHTNESS),)
360 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
361endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000362ifneq ($(TW_CUSTOM_BATTERY_PATH),)
363 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
364endif
Jenkins1710bf22014-10-02 20:22:21 -0400365ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
366 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
367endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000368ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
369 LOCAL_SHARED_LIBRARIES += libopenaes
370else
371 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
372endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100373ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300374 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
375 LOCAL_CFLAGS += -DQCOM_RTC_FIX
376 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100377 LOCAL_CFLAGS += -DQCOM_RTC_FIX
378 endif
379else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
380 LOCAL_CFLAGS += -DQCOM_RTC_FIX
381endif
Matt Mower6883d732014-03-20 17:28:13 -0500382ifneq ($(TW_NO_LEGACY_PROPS),)
383 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
384endif
Dees Troy4159aed2014-02-28 17:24:43 +0000385ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
386 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
387endif
Matt Mowerec009e82015-01-30 13:00:49 -0600388ifneq ($(TARGET_RECOVERY_INITRC),)
389 TW_EXCLUDE_DEFAULT_USB_INIT := true
390endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500391ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
392 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
393endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500394ifneq ($(TW_DEFAULT_LANGUAGE),)
395 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
396else
397 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
398endif
Phoenix591e444d112018-02-03 07:23:54 +0000399ifneq ($(TW_CLOCK_OFFSET),)
400 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
401endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500402LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500403 dump_image \
404 erase_image \
405 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500406 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500407 pigz \
408 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500409 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500410 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600411 fsck.fat \
412 fatlabel \
413 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500414 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500415 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500416 libbootloader_message_twrp \
417 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500418 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500419
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600420ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500421 ifneq ($(TARGET_ARCH), x86_64)
422 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
423 else
424 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
425 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600426else
427 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600428endif
429ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600430 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
431 LOCAL_POST_INSTALL_CMD := \
432 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
433 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
434 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500435else
436 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500437 LOCAL_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500438 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800439 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500440 LOCAL_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800441 endif
442 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500443 LOCAL_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800444 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600445endif
Matt Mower84057612017-01-08 13:32:18 -0600446
Matt Mower20172792014-11-14 10:54:03 -0600447ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500448 LOCAL_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600449 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500450 LOCAL_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600451 endif
Matt Mower20172792014-11-14 10:54:03 -0600452endif
Matt Mower031163b2014-11-01 15:13:03 -0500453ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600454 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500455 LOCAL_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600456 else
Ethan Yonker58f21322018-08-24 11:17:36 -0500457 LOCAL_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600458 endif
Matt Mower031163b2014-11-01 15:13:03 -0500459endif
460ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500461 LOCAL_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500462endif
463ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500464 LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500465 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
466 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
467endif
Matt Mower031163b2014-11-01 15:13:03 -0500468ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500469 LOCAL_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500470endif
471ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500472 LOCAL_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500473endif
474ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500475 LOCAL_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500476endif
477ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500478 LOCAL_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500479endif
Matt Mowerec009e82015-01-30 13:00:49 -0600480ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500481 LOCAL_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600482endif
Captain Throwback1f127752016-01-19 17:30:20 -0500483ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500484 LOCAL_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600485 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500486 LOCAL_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600487 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500488endif
Matt Mower031163b2014-11-01 15:13:03 -0500489# Allow devices to specify device-specific recovery dependencies
490ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500491 LOCAL_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500492endif
Dees Troy3454ade2015-01-20 19:21:04 +0000493LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
494LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500495ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400496ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500497 LOCAL_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500498 mount.ntfs \
499 fsck.ntfs \
500 mkfs.ntfs
501else
Ethan Yonker58f21322018-08-24 11:17:36 -0500502 LOCAL_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500503 ntfs-3g \
504 ntfsfix \
505 mkntfs
506endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500507endif
Matt Mower58294912015-12-10 11:54:28 -0600508ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
509ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500510 LOCAL_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600511 fsck.f2fs \
512 mkfs.f2fs
513endif
Ethan Yonker93382822018-11-01 15:25:31 -0500514ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
515 LOCAL_REQUIRED_MODULES += sload.f2fs
516endif
Matt Mower58294912015-12-10 11:54:28 -0600517endif
Matt Mower031163b2014-11-01 15:13:03 -0500518
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100519ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500520 LOCAL_REQUIRED_MODULES += file_contexts_text
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100521else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
522 LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600523endif
524
Mark Salyzyn13aca592016-03-09 14:58:16 -0800525ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
oshmoun9220dba2018-11-24 11:26:01 +0100526LOCAL_REQUIRED_MODULES += recovery-persist recovery-refresh
Mark Salyzyn13aca592016-03-09 14:58:16 -0800527endif
528
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800529include $(BUILD_EXECUTABLE)
530
Matt Mowerd821c962017-02-15 12:36:18 -0600531# Symlink for file_contexts
532include $(CLEAR_VARS)
533
Captain Throwback3184b2f2017-03-07 12:07:40 -0500534LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600535LOCAL_MODULE_TAGS := optional
Captain Throwback3184b2f2017-03-07 12:07:40 -0500536LOCAL_REQUIRED_MODULES := file_contexts.bin
Matt Mowerd821c962017-02-15 12:36:18 -0600537LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500538 $(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 -0600539
540include $(BUILD_PHONY_PACKAGE)
541
Ethan Yonker5c933692014-04-04 11:26:32 -0500542ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800543include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400544# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
545BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600546exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500547
Ethan Yonkera60c7862016-02-25 15:32:06 -0600548# Having /sbin/modprobe present on 32 bit devices with can cause a massive
549# performance problem if the kernel has CONFIG_MODULES=y
550ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
551 ifneq ($(TARGET_ARCH), arm64)
552 ifneq ($(TARGET_ARCH), x86_64)
553 exclude += modprobe
554 endif
555 endif
556endif
557
Matt Mower81742fb2014-09-01 14:40:52 -0500558# If busybox does not have restorecon, assume it does not have SELinux support.
559# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600560ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
561 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000562endif
Matt Mower81742fb2014-09-01 14:40:52 -0500563
564RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
565RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400566$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
567$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
568 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
569 @mkdir -p $(dir $@)
570 @rm -rf $@
571 $(hide) ln -sf $(BUSYBOX_BINARY) $@
572
Matt Mower031163b2014-11-01 15:13:03 -0500573include $(CLEAR_VARS)
574LOCAL_MODULE := busybox_symlinks
575LOCAL_MODULE_TAGS := optional
576LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000577ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
578ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
579endif
Matt Mower031163b2014-11-01 15:13:03 -0500580include $(BUILD_PHONY_PACKAGE)
581RECOVERY_BUSYBOX_SYMLINKS :=
582endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400583
Mark Salyzyn13aca592016-03-09 14:58:16 -0800584# recovery-persist (system partition dynamic executable run after /data mounts)
585# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500586ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
587 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500588 LOCAL_SRC_FILES := \
589 recovery-persist.cpp \
590 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500591 LOCAL_MODULE := recovery-persist
592 LOCAL_SHARED_LIBRARIES := liblog libbase
593 LOCAL_CFLAGS := -Werror
594 LOCAL_INIT_RC := recovery-persist.rc
595 include $(BUILD_EXECUTABLE)
596endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800597
Mark Salyzyn13aca592016-03-09 14:58:16 -0800598# recovery-refresh (system partition dynamic executable run at init)
599# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500600ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
601 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500602 LOCAL_SRC_FILES := \
603 recovery-refresh.cpp \
604 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500605 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500606 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500607 LOCAL_CFLAGS := -Werror
608 LOCAL_INIT_RC := recovery-refresh.rc
609 include $(BUILD_EXECUTABLE)
610endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800611
Ethan Yonker34ae4832016-08-24 15:32:18 -0500612# shared libfusesideload
613# ===============================
614include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500615LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500616LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500617LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
618
619LOCAL_MODULE_TAGS := optional
620LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500621LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500622ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500623 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
624 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
625 LOCAL_CFLAGS += -DUSE_MINCRYPT
626else
627 LOCAL_SHARED_LIBRARIES += libcrypto
628endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500629ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
630 LOCAL_SRC_FILES := fuse_sideload22.cpp
631 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
632else
633 LOCAL_SRC_FILES := fuse_sideload.cpp
634endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500635include $(BUILD_SHARED_LIBRARY)
636
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600637# static libfusesideload
638# =============================== (required to fix build errors in 8.1 due to use by tests)
639include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600640LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500641LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600642LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
643
644LOCAL_MODULE_TAGS := optional
645LOCAL_MODULE := libfusesideload
646LOCAL_SHARED_LIBRARIES := libcutils libc
647ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
648 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
649 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
650 LOCAL_CFLAGS += -DUSE_MINCRYPT
651else
652 LOCAL_STATIC_LIBRARIES += libcrypto_static
653endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500654ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
655 LOCAL_SRC_FILES := fuse_sideload22.cpp
656 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
657else
658 LOCAL_SRC_FILES := fuse_sideload.cpp
659endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800660include $(BUILD_STATIC_LIBRARY)
661
Elliott Hughes63a31922016-06-09 17:41:22 -0700662# libmounts (static library)
663# ===============================
664include $(CLEAR_VARS)
665LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700666LOCAL_CFLAGS := \
667 -Wall \
668 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700669LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700670LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700671include $(BUILD_STATIC_LIBRARY)
672
Tao Bao62e0bc72017-04-10 16:55:57 -0700673# librecovery (static library)
674# ===============================
675include $(CLEAR_VARS)
676LOCAL_SRC_FILES := \
677 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700678LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700679LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700680
681ifeq ($(AB_OTA_UPDATER),true)
682 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
683endif
684
Tao Bao62e0bc72017-04-10 16:55:57 -0700685LOCAL_MODULE := librecovery
686LOCAL_STATIC_LIBRARIES := \
687 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700688 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700689 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700690 libcrypto_utils \
691 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700692 libbase \
693 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700694
695include $(BUILD_STATIC_LIBRARY)
696
Ethan Yonker34ae4832016-08-24 15:32:18 -0500697# shared libaosprecovery for Apache code
698# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000699include $(CLEAR_VARS)
700
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800701
Dees_Troy2673cec2013-04-02 20:22:16 +0000702LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500703LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500704LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500705LOCAL_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 -0600706LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
707LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500708ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500709 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600710 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500711 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500712else
713 LOCAL_SHARED_LIBRARIES += libc++
714endif
715ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
716 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600717 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500718 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500719 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
720else
Ethan Yonker941a8992016-12-05 09:04:30 -0600721 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500722 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500723 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500724endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700725
Ethan Yonker941a8992016-12-05 09:04:30 -0600726ifeq ($(AB_OTA_UPDATER),true)
727 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
728endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500729ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500730 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500731 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
732 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500733 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
734 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
735 # Android 9.0 needs c++17 for libvintf
736 LOCAL_CPPFLAGS += -std=c++17
737 # Android 9.0's libvintf also needs this library
738 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
739 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800740else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500741 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800742endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000743
744include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800745# libverifier (static library)
746# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700747include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700748LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700749LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700750LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700751 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700752 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800753LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700754 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800755 libcrypto_utils \
756 libcrypto \
757 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700758LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800759include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800760
Tao Bao016120f2017-08-02 17:11:04 -0700761# Wear default device
762# ===============================
763include $(CLEAR_VARS)
764LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700765LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700766
767# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
768LOCAL_MODULE := librecovery_ui_wear
769
770include $(BUILD_STATIC_LIBRARY)
771
Luke Songa44dba72017-06-12 16:08:33 -0700772# vr headset default device
773# ===============================
774include $(CLEAR_VARS)
775
776LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700777LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700778
779# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
780LOCAL_MODULE := librecovery_ui_vr
781
782include $(BUILD_STATIC_LIBRARY)
783
Dees_Troy51a0e822012-09-05 15:24:24 -0400784commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600785
Ethan Yonker58f21322018-08-24 11:17:36 -0500786# $(LOCAL_PATH)/edify/Android.mk
787# $(LOCAL_PATH)/otafault/Android.mk
788# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700789include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500790 $(commands_TWRP_local_path)/boot_control/Android.mk \
791 $(commands_TWRP_local_path)/tests/Android.mk \
792 $(commands_TWRP_local_path)/tools/Android.mk \
793 $(commands_TWRP_local_path)/updater/Android.mk \
794 $(commands_TWRP_local_path)/update_verifier/Android.mk \
795 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
796
797ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
798include $(commands_TWRP_local_path)/bootloader_message/Android.mk
799endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400800
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500801ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
802 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
803else
804 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
805endif
806
Matt Mowerf746dbb2015-05-13 22:56:31 -0500807ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500808 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500809endif
810
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500811ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500812 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
813 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
814 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
815 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500816 include $(commands_TWRP_local_path)/minadbd/Android.mk \
817 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500818else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500819 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500820 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
821 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500822endif
823
Ethan Yonker58f21322018-08-24 11:17:36 -0500824#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400825#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500826include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
827 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
828 $(commands_TWRP_local_path)/gui/Android.mk \
829 $(commands_TWRP_local_path)/mmcutils/Android.mk \
830 $(commands_TWRP_local_path)/bmlutils/Android.mk \
831 $(commands_TWRP_local_path)/prebuilt/Android.mk \
832 $(commands_TWRP_local_path)/mtdutils/Android.mk \
833 $(commands_TWRP_local_path)/flashutils/Android.mk \
834 $(commands_TWRP_local_path)/pigz/Android.mk \
835 $(commands_TWRP_local_path)/libtar/Android.mk \
836 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
837 $(commands_TWRP_local_path)/libblkid/Android.mk \
838 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
839 $(commands_TWRP_local_path)/openaes/Android.mk \
840 $(commands_TWRP_local_path)/toolbox/Android.mk \
841 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500842 $(commands_TWRP_local_path)/minzip/Android.mk \
843 $(commands_TWRP_local_path)/dosfstools/Android.mk \
844 $(commands_TWRP_local_path)/etc/Android.mk \
845 $(commands_TWRP_local_path)/toybox/Android.mk \
846 $(commands_TWRP_local_path)/simg2img/Android.mk \
847 $(commands_TWRP_local_path)/adbbu/Android.mk \
848 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
849 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
850 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600851
Ethan Yonker534d4e02016-08-26 10:05:03 -0500852ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500853 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500854endif
855
Ethan Yonker253368a2014-11-25 15:00:52 -0600856ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500857 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500858 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600859 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500860 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600861 endif
nkk7171c6c502017-01-05 23:55:05 +0200862 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
863 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500864 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200865 endif
866 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500867 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600868endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100869ifeq ($(BUILD_ID), GINGERBREAD)
870 TW_NO_EXFAT := true
871endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000872ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500873 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
874 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
875 $(commands_TWRP_local_path)/fuse/Android.mk \
876 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600877 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500878 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600879 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400880endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500881ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500882 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500883endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500884
Talustus3019a912013-04-06 11:50:07 +0200885# FB2PNG
886ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500887 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200888endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500889
Matt Mower55c75ca2014-08-31 11:30:15 -0500890endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500891
892commands_TWRP_local_path :=