blob: 6eb1cbcd53c17a7418385ce0a5cef83742a52280 [file] [log] [blame]
Joe Onorato6396e702012-05-31 23:21:46 -07001# Copyright (C) 2007 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080014
Joe Onorato6396e702012-05-31 23:21:46 -070015LOCAL_PATH := $(call my-dir)
Ethan Yonker58f21322018-08-24 11:17:36 -050016commands_TWRP_local_path := $(LOCAL_PATH)
Joe Onorato6396e702012-05-31 23:21:46 -070017
Ethan Yonker66bcd492018-12-20 09:03:17 -060018ifneq ($(project-path-for),)
Matt Mower66766fe2014-10-06 18:03:39 -050019 ifeq ($(LOCAL_PATH),$(call project-path-for,recovery))
20 PROJECT_PATH_AGREES := true
Andrea Mennillof591c872015-11-03 20:58:11 +010021 BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy
Matt Mower66766fe2014-10-06 18:03:39 -050022 endif
23else
24 ifeq ($(LOCAL_PATH),bootable/recovery)
25 PROJECT_PATH_AGREES := true
Ethan Yonker11309e92015-07-01 07:58:56 -050026 BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy
Matt Mower66766fe2014-10-06 18:03:39 -050027 endif
Matt Mower55c75ca2014-08-31 11:30:15 -050028endif
29
Matt Mower66766fe2014-10-06 18:03:39 -050030ifeq ($(PROJECT_PATH_AGREES),true)
Matt Mower55c75ca2014-08-31 11:30:15 -050031
Matt Mower047723c2015-12-10 01:31:15 -060032ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22))
Ethan Yonker11309e92015-07-01 07:58:56 -050033# Make recovery domain permissive for TWRP
that8e213fd2015-10-17 00:17:53 +020034 BOARD_SEPOLICY_UNION += twrp.te
35endif
Ethan Yonker11309e92015-07-01 07:58:56 -050036
Motorhead199175b6f662014-06-12 15:58:33 -070037include $(CLEAR_VARS)
38
Matt Mower1777cdc2015-09-26 15:56:56 -050039TWRES_PATH := /twres/
Dees Troy3454ade2015-01-20 19:21:04 +000040TWHTCD_PATH := $(TWRES_PATH)htcd/
41
Dees_Troy51a0e822012-09-05 15:24:24 -040042TARGET_RECOVERY_GUI := true
Joe Onorato6396e702012-05-31 23:21:46 -070043
bigbiff bigbiff584b9772016-12-08 21:21:17 -050044ifneq ($(TW_DEVICE_VERSION),)
45 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"'
46else
47 LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"'
48endif
dianlujitao4879b372018-12-03 18:45:47 +080049LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
bigbiff bigbiff584b9772016-12-08 21:21:17 -050050
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051LOCAL_SRC_FILES := \
Dees_Troy2673cec2013-04-02 20:22:16 +000052 twrp.cpp \
Ethan Yonkerb5fab762016-01-28 14:03:33 -060053 fixContexts.cpp \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050054 twrpTar.cpp \
Ethan Yonker3fdcda42016-11-30 12:29:37 -060055 exclude.cpp \
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050056 find_file.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040057 infomanager.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040058 data.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040059 partition.cpp \
60 partitionmanager.cpp \
Ethan Yonker472f5062016-02-25 13:47:30 -060061 progresstracking.cpp \
Dees_Troy32c8eb82012-09-11 15:28:06 -040062 twinstall.cpp \
Dees_Troy812660f2012-09-20 09:55:17 -040063 twrp-functions.cpp \
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040064 twrpDigestDriver.cpp \
Dees_Troye34c1332013-02-06 19:13:00 +000065 openrecoveryscript.cpp \
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040066 tarWrite.c \
67 twrpAdbBuFifo.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040068
Dees_Troya58bead2012-09-27 09:49:29 -040069ifneq ($(TARGET_RECOVERY_REBOOT_SRC),)
Dees_Troy51a0e822012-09-05 15:24:24 -040070 LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC)
71endif
72
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073LOCAL_MODULE := recovery
74
Dees_Troy51a0e822012-09-05 15:24:24 -040075#LOCAL_FORCE_STATIC_EXECUTABLE := true
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076
Ethan Yonker34ae4832016-08-24 15:32:18 -050077#ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ethan Yonkera1674162014-11-06 08:35:10 -060078#ifeq ($(HOST_OS),linux)
79#LOCAL_REQUIRED_MODULES := mkfs.f2fs
80#endif
Ethan Yonker34ae4832016-08-24 15:32:18 -050081#endif
JP Abgrall37aedb32014-06-16 19:07:39 -070082
Doug Zongkere08991e2010-02-02 13:09:52 -080083RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080084RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070085LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080086LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070087LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070088
Dees_Troy51a0e822012-09-05 15:24:24 -040089#LOCAL_STATIC_LIBRARIES := \
Dees_Troy1669f892013-09-04 18:35:08 +000090# libext4_utils_static \
91# libsparse_static \
Dees_Troy51a0e822012-09-05 15:24:24 -040092# libminzip \
Dees_Troy1669f892013-09-04 18:35:08 +000093# libz \
Dees_Troy51a0e822012-09-05 15:24:24 -040094# libmtdutils \
95# libmincrypt \
96# libminadbd \
Dees_Troy1669f892013-09-04 18:35:08 +000097# libminui \
98# libpixelflinger_static \
99# libpng \
100# libfs_mgr \
101# libcutils \
102# liblog \
103# libselinux \
104# libstdc++ \
105# libm \
106# libc
Dees_Troy51a0e822012-09-05 15:24:24 -0400107
Dan Albert1ddd3502015-02-18 15:58:15 -0800108LOCAL_C_INCLUDES += \
109 system/vold \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500110 system/extras \
Dan Albert1ddd3502015-02-18 15:58:15 -0800111 system/core/adb \
bigbiffce8f83c2015-12-12 18:30:21 -0500112 system/core/libsparse \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500113 external/zlib \
114 $(LOCAL_PATH)/bootloader_message_twrp/include
Adrien Grassein3cd669f2014-11-06 14:53:50 +0100115
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400116LOCAL_C_INCLUDES += bionic
Xing0af1ac12015-11-27 11:19:37 -0800117ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400118 LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include
Ethan Yonker58f21322018-08-24 11:17:36 -0500119 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400120else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500121 LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include
Xing0af1ac12015-11-27 11:19:37 -0800122endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400123
124LOCAL_STATIC_LIBRARIES :=
125LOCAL_SHARED_LIBRARIES :=
126
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600127LOCAL_STATIC_LIBRARIES += libguitwrp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500128LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp
129LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500130
Xing0af1ac12015-11-27 11:19:37 -0800131ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500132 LOCAL_SHARED_LIBRARIES += libstlport
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400133 LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY
Ethan Yonker534d4e02016-08-26 10:05:03 -0500134endif
135ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
136 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500137 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
138 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500139else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500140 LOCAL_SHARED_LIBRARIES += libcrypto
Ethan Yonkerf1179622016-08-25 15:32:21 -0500141endif
142
143ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
144 LOCAL_SHARED_LIBRARIES += libbase
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500145endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700146
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500147ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
148 LOCAL_SHARED_LIBRARIES += libziparchive
Ethan Yonker58f21322018-08-24 11:17:36 -0500149 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500150else
151 LOCAL_SHARED_LIBRARIES += libminzip
152 LOCAL_CFLAGS += -DUSE_MINZIP
153endif
154
Dees_Troy4546fe72013-01-10 14:33:27 +0000155ifneq ($(wildcard system/core/libsparse/Android.mk),)
156LOCAL_SHARED_LIBRARIES += libsparse
157endif
158
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500159ifeq ($(TW_OEM_BUILD),true)
160 LOCAL_CFLAGS += -DTW_OEM_BUILD
161 BOARD_HAS_NO_REAL_SDCARD := true
162 TW_USE_TOOLBOX := true
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400163 TW_EXCLUDE_MTP := true
Ethan Yonker7af51ce2014-04-04 13:33:30 -0500164endif
Yabin Cui99281df2016-02-17 12:21:52 -0800165
Doug Zongker49c73a72010-06-29 17:36:28 -0700166ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500167 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
168 LOCAL_CFLAGS += -DUSE_EXT4
169 LOCAL_C_INCLUDES += system/extras/ext4_utils
170 LOCAL_SHARED_LIBRARIES += libext4_utils
171 ifneq ($(wildcard external/lz4/Android.mk),)
172 #LOCAL_STATIC_LIBRARIES += liblz4
173 endif
Tom Marshall56fe5e72015-04-17 05:23:00 -0700174 endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700175endif
Matt Mower87413642017-01-17 21:14:46 -0600176LOCAL_C_INCLUDES += external/libselinux/include
177LOCAL_SHARED_LIBRARIES += libselinux
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500178#ifneq ($(TARGET_USERIMAGES_USE_EXT4), true)
179# LOCAL_CFLAGS += -DUSE_EXT4
180# LOCAL_C_INCLUDES += system/extras/ext4_utils
181# LOCAL_SHARED_LIBRARIES += libext4_utils
182# ifneq ($(wildcard external/lz4/Android.mk),)
183# LOCAL_STATIC_LIBRARIES += liblz4
184# endif
185#endif
Doug Zongker49c73a72010-06-29 17:36:28 -0700186
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700187ifeq ($(AB_OTA_UPDATER),true)
188 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
bigbiff bigbiffc630cee2019-01-03 20:14:06 -0500189 LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0
Ethan Yonker58f21322018-08-24 11:17:36 -0500190 LOCAL_REQUIRED_MODULES += libhardware
Elliott Hughes01fcbe12016-05-23 17:43:41 -0700191endif
192
Ying Wang5a50b1b2015-03-10 11:56:56 -0700193LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194
Dees_Troy1669f892013-09-04 18:35:08 +0000195#ifeq ($(TARGET_RECOVERY_UI_LIB),)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500196# LOCAL_SRC_FILES += default_device.cpp
Dees_Troy1669f892013-09-04 18:35:08 +0000197#else
198# LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
199#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500200ifeq ($(TARGET_RECOVERY_TWRP_LIB),)
201 LOCAL_SRC_FILES += BasePartition.cpp
202else
203 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB)
204endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800205
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700206LOCAL_C_INCLUDES += system/extras/ext4_utils
207
that0e2140e2016-08-10 21:04:26 +0200208tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null)
209ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1)
210 tw_git_revision := $(tw_git_revision)-dirty
211endif
212LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"'
213
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500214ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
215ifeq ($(TW_EXCLUDE_MTP),)
216 LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs
217endif
218else
219ifeq ($(TW_EXCLUDE_MTP),)
220 LOCAL_CFLAGS += -DTW_HAS_LEGACY_MTP
221 LOCAL_SHARED_LIBRARIES += libtwrpmtp-legacy
222endif
223endif
224
Dees_Troy51a0e822012-09-05 15:24:24 -0400225#TWRP Build Flags
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400226ifeq ($(TW_EXCLUDE_MTP),)
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400227 LOCAL_CFLAGS += -DTW_HAS_MTP
228endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -0700229ifneq ($(TW_NO_SCREEN_TIMEOUT),)
230 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
231endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400232ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true)
233 LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD
234endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400235ifneq ($(RECOVERY_SDCARD_ON_DATA),)
236 LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA
237endif
238ifneq ($(TW_INCLUDE_DUMLOCK),)
239 LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK
240endif
241ifneq ($(TW_INTERNAL_STORAGE_PATH),)
242 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH)
243endif
244ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),)
245 LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT)
246endif
247ifneq ($(TW_EXTERNAL_STORAGE_PATH),)
248 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH)
249endif
250ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),)
251 LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT)
252endif
ChampionSwimmercf33e4d2013-02-03 13:59:22 +0530253ifeq ($(TW_HAS_NO_BOOT_PARTITION), true)
254 LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION
255endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400256ifeq ($(TW_NO_REBOOT_BOOTLOADER), true)
257 LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER
258endif
259ifeq ($(TW_NO_REBOOT_RECOVERY), true)
260 LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY
261endif
262ifeq ($(TW_NO_BATT_PERCENT), true)
263 LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT
264endif
Jenkins1710bf22014-10-02 20:22:21 -0400265ifeq ($(TW_NO_CPU_TEMP), true)
266 LOCAL_CFLAGS += -DTW_NO_CPU_TEMP
267endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400268ifneq ($(TW_CUSTOM_POWER_BUTTON),)
269 LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON)
270endif
271ifeq ($(TW_ALWAYS_RMRF), true)
272 LOCAL_CFLAGS += -DTW_ALWAYS_RMRF
273endif
274ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true)
275 LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM
276endif
277ifeq ($(TW_NO_USB_STORAGE), true)
278 LOCAL_CFLAGS += -DTW_NO_USB_STORAGE
279endif
280ifeq ($(TW_INCLUDE_INJECTTWRP), true)
281 LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP
282endif
283ifeq ($(TW_INCLUDE_BLOBPACK), true)
284 LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK
285endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400286ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),)
287 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\"
288endif
289ifneq ($(BOARD_UMS_LUNFILE),)
290 LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\"
291endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400292ifeq ($(TW_HAS_DOWNLOAD_MODE), true)
293 LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE
294endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200295ifeq ($(TW_HAS_EDL_MODE), true)
296 LOCAL_CFLAGS += -DTW_HAS_EDL_MODE
297endif
bigbiff bigbiff87940362013-03-09 09:58:50 -0500298ifeq ($(TW_NO_SCREEN_BLANK), true)
299 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
300endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400301ifeq ($(TW_SDEXT_NO_EXT4), true)
302 LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4
303endif
Dees_Troyfdf5fcc2012-09-11 10:27:01 -0400304ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true)
305 LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID
306endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000307ifeq ($(TW_NO_EXFAT_FUSE), true)
308 LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE
309endif
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400310ifeq ($(TW_NO_HAPTICS), true)
311 LOCAL_CFLAGS += -DTW_NO_HAPTICS
312endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400313ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600314 TW_INCLUDE_CRYPTO := true
Dees_Troy51a0e822012-09-05 15:24:24 -0400315endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600316ifeq ($(TW_INCLUDE_L_CRYPTO), true)
Ethan Yonker253368a2014-11-25 15:00:52 -0600317 TW_INCLUDE_CRYPTO := true
318endif
319ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600320 LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -0500321 LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500322 LOCAL_C_INCLUDES += external/boringssl/src/include
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600323 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
324 TW_INCLUDE_CRYPTO_FBE := true
325 LOCAL_CFLAGS += -DTW_INCLUDE_FBE
326 LOCAL_SHARED_LIBRARIES += libe4crypt
Ethan Yonker93382822018-11-01 15:25:31 -0500327 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
328 LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT
329 endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600330 endif
nkk7171c6c502017-01-05 23:55:05 +0200331 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
332 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
333 LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD
334 LOCAL_STATIC_LIBRARIES += libvolddecrypt
335 endif
336 endif
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600337endif
D. Andrei Măceșb29a5e22016-12-22 06:19:44 -0500338WITH_CRYPTO_UTILS := \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500339 $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true)
Anatoly Smaznov10c11f62013-02-12 13:33:40 +0700340ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true)
341 LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID
342endif
lambdadroidfc0b16d2017-08-04 17:16:53 +0200343ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true)
344 LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID
345endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600346ifneq ($(TW_BRIGHTNESS_PATH),)
347 LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH)
348endif
xNUTxe85f02d2014-07-18 01:30:58 +0200349ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),)
350 LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH)
351endif
Dees_Troy2f9117a2013-02-17 19:52:09 -0600352ifneq ($(TW_MAX_BRIGHTNESS),)
353 LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
354endif
Greg Wallace36ade452015-11-08 13:54:25 -0500355ifneq ($(TW_DEFAULT_BRIGHTNESS),)
356 LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
357endif
Dees_Troyf33b4902013-03-01 00:51:39 +0000358ifneq ($(TW_CUSTOM_BATTERY_PATH),)
359 LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
360endif
Jenkins1710bf22014-10-02 20:22:21 -0400361ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),)
362 LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH)
363endif
Dees_Troy83bd4832013-05-04 12:39:56 +0000364ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
365 LOCAL_SHARED_LIBRARIES += libopenaes
366else
367 LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS
368endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100369ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),)
Michael Bestas4a185582017-04-28 15:45:26 +0300370 ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),)
371 LOCAL_CFLAGS += -DQCOM_RTC_FIX
372 else ifeq ($(TARGET_CPU_VARIANT),krait)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100373 LOCAL_CFLAGS += -DQCOM_RTC_FIX
374 endif
375else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true)
376 LOCAL_CFLAGS += -DQCOM_RTC_FIX
377endif
Matt Mower6883d732014-03-20 17:28:13 -0500378ifneq ($(TW_NO_LEGACY_PROPS),)
379 LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS
380endif
Dees Troy4159aed2014-02-28 17:24:43 +0000381ifneq ($(wildcard bionic/libc/include/sys/capability.h),)
382 LOCAL_CFLAGS += -DHAVE_CAPABILITIES
383endif
Matt Mowerec009e82015-01-30 13:00:49 -0600384ifneq ($(TARGET_RECOVERY_INITRC),)
385 TW_EXCLUDE_DEFAULT_USB_INIT := true
386endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500387ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
388 LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD
389endif
Ethan Yonker74db1572015-10-28 12:44:49 -0500390ifneq ($(TW_DEFAULT_LANGUAGE),)
391 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE)
392else
393 LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en
394endif
Phoenix591e444d112018-02-03 07:23:54 +0000395ifneq ($(TW_CLOCK_OFFSET),)
396 LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET)
397endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500398LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500399 dump_image \
400 erase_image \
401 flash_image \
Matt Mower031163b2014-11-01 15:13:03 -0500402 mke2fs.conf \
Matt Mower031163b2014-11-01 15:13:03 -0500403 pigz \
404 teamwin \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500405 toolbox_symlinks \
Matt Mower031163b2014-11-01 15:13:03 -0500406 twrp \
Matt Mower18794c82015-11-11 16:22:45 -0600407 fsck.fat \
408 fatlabel \
409 mkfs.fat \
HashBanged974bb2016-01-30 14:20:09 -0500410 permissive.sh \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500411 simg2img_twrp \
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500412 libbootloader_message_twrp \
413 init.recovery.hlthchrg.rc \
Ethan Yonkerf1179622016-08-25 15:32:21 -0500414 init.recovery.service.rc
Matt Mower031163b2014-11-01 15:13:03 -0500415
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600416ifneq ($(TARGET_ARCH), arm64)
Ethan Yonker4f6a9762015-03-09 13:58:54 -0500417 ifneq ($(TARGET_ARCH), x86_64)
418 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker
419 else
420 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
421 endif
Ethan Yonker1902c792014-12-03 16:48:36 -0600422else
423 LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600424endif
425ifneq ($(TW_USE_TOOLBOX), true)
Matt Mower84057612017-01-08 13:32:18 -0600426 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
427 LOCAL_POST_INSTALL_CMD := \
428 $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \
429 ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
430 endif
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500431else
432 ifneq ($(wildcard external/toybox/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500433 LOCAL_REQUIRED_MODULES += toybox_symlinks
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500434 endif
dianlujitaoce608ab2015-12-28 23:51:19 +0800435 ifneq ($(wildcard external/zip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500436 LOCAL_REQUIRED_MODULES += zip
dianlujitaoce608ab2015-12-28 23:51:19 +0800437 endif
438 ifneq ($(wildcard external/unzip/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500439 LOCAL_REQUIRED_MODULES += unzip
dianlujitaoce608ab2015-12-28 23:51:19 +0800440 endif
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600441endif
Matt Mower84057612017-01-08 13:32:18 -0600442
Matt Mower20172792014-11-14 10:54:03 -0600443ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500444 LOCAL_REQUIRED_MODULES += mkexfatfs fsckexfat
Ethan Yonker34741d92016-02-06 13:22:45 -0600445 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500446 LOCAL_REQUIRED_MODULES += exfat-fuse
Ethan Yonker34741d92016-02-06 13:22:45 -0600447 endif
Matt Mower20172792014-11-14 10:54:03 -0600448endif
Matt Mower031163b2014-11-01 15:13:03 -0500449ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
Ethan Yonker483e9f42016-01-11 22:21:18 -0600450 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500451 LOCAL_REQUIRED_MODULES += sgdisk
Ethan Yonker483e9f42016-01-11 22:21:18 -0600452 else
Ethan Yonker58f21322018-08-24 11:17:36 -0500453 LOCAL_REQUIRED_MODULES += sgdisk_static
Ethan Yonker483e9f42016-01-11 22:21:18 -0600454 endif
Matt Mower031163b2014-11-01 15:13:03 -0500455endif
456ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500457 LOCAL_REQUIRED_MODULES += openaes openaes_license
Matt Mower031163b2014-11-01 15:13:03 -0500458endif
459ifeq ($(TW_INCLUDE_DUMLOCK), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500460 LOCAL_REQUIRED_MODULES += \
Matt Mower031163b2014-11-01 15:13:03 -0500461 htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \
462 libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk
463endif
Matt Mower031163b2014-11-01 15:13:03 -0500464ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500465 LOCAL_REQUIRED_MODULES += fb2png
Matt Mower031163b2014-11-01 15:13:03 -0500466endif
467ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500468 LOCAL_REQUIRED_MODULES += orscmd
Matt Mower031163b2014-11-01 15:13:03 -0500469endif
470ifeq ($(BOARD_USES_BML_OVER_MTD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500471 LOCAL_REQUIRED_MODULES += bml_over_mtd
Matt Mower031163b2014-11-01 15:13:03 -0500472endif
473ifeq ($(TW_INCLUDE_INJECTTWRP), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500474 LOCAL_REQUIRED_MODULES += injecttwrp
Matt Mower031163b2014-11-01 15:13:03 -0500475endif
Matt Mowerec009e82015-01-30 13:00:49 -0600476ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500477 LOCAL_REQUIRED_MODULES += init.recovery.usb.rc
Matt Mowerec009e82015-01-30 13:00:49 -0600478endif
Captain Throwback1f127752016-01-19 17:30:20 -0500479ifeq ($(TWRP_INCLUDE_LOGCAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500480 LOCAL_REQUIRED_MODULES += logcat
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600481 ifeq ($(TARGET_USES_LOGD), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500482 LOCAL_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc
Ethan Yonkere5a288c2016-02-15 09:23:57 -0600483 endif
Captain Throwback1f127752016-01-19 17:30:20 -0500484endif
Matt Mower031163b2014-11-01 15:13:03 -0500485# Allow devices to specify device-specific recovery dependencies
486ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500487 LOCAL_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES)
Matt Mower031163b2014-11-01 15:13:03 -0500488endif
Dees Troy3454ade2015-01-20 19:21:04 +0000489LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
490LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\"
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500491ifeq ($(TW_INCLUDE_NTFS_3G),true)
Jason Riordan6c28ee82016-05-12 09:06:57 -0400492ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500493 LOCAL_REQUIRED_MODULES += \
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500494 mount.ntfs \
495 fsck.ntfs \
496 mkfs.ntfs
497else
Ethan Yonker58f21322018-08-24 11:17:36 -0500498 LOCAL_REQUIRED_MODULES += \
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500499 ntfs-3g \
500 ntfsfix \
501 mkntfs
502endif
Greg Wallaceb39e6c62015-12-29 00:55:26 -0500503endif
Matt Mower58294912015-12-10 11:54:28 -0600504ifeq ($(TARGET_USERIMAGES_USE_F2FS), true)
505ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500506 LOCAL_REQUIRED_MODULES += \
Matt Mower58294912015-12-10 11:54:28 -0600507 fsck.f2fs \
508 mkfs.f2fs
509endif
Ethan Yonker93382822018-11-01 15:25:31 -0500510ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
511 LOCAL_REQUIRED_MODULES += sload.f2fs
512endif
Matt Mower58294912015-12-10 11:54:28 -0600513endif
Matt Mower031163b2014-11-01 15:13:03 -0500514
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100515ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500516 LOCAL_REQUIRED_MODULES += file_contexts_text
Andreas Blaesius38d2d522019-01-29 14:00:56 +0100517else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0)
518 LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600519endif
520
Mark Salyzyn13aca592016-03-09 14:58:16 -0800521ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
oshmoun9220dba2018-11-24 11:26:01 +0100522LOCAL_REQUIRED_MODULES += recovery-persist recovery-refresh
Mark Salyzyn13aca592016-03-09 14:58:16 -0800523endif
524
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800525include $(BUILD_EXECUTABLE)
526
Matt Mowerd821c962017-02-15 12:36:18 -0600527# Symlink for file_contexts
528include $(CLEAR_VARS)
529
Captain Throwback3184b2f2017-03-07 12:07:40 -0500530LOCAL_MODULE := file_contexts_text
Matt Mowerd821c962017-02-15 12:36:18 -0600531LOCAL_MODULE_TAGS := optional
Captain Throwback3184b2f2017-03-07 12:07:40 -0500532LOCAL_REQUIRED_MODULES := file_contexts.bin
Matt Mowerd821c962017-02-15 12:36:18 -0600533LOCAL_POST_INSTALL_CMD := \
Ethan Yonker58f21322018-08-24 11:17:36 -0500534 $(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 -0600535
536include $(BUILD_PHONY_PACKAGE)
537
Ethan Yonker5c933692014-04-04 11:26:32 -0500538ifneq ($(TW_USE_TOOLBOX), true)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800539include $(CLEAR_VARS)
Dees_Troyc04dcf72012-10-02 10:46:37 -0400540# Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead
541BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links)
Matt Mower18794c82015-11-11 16:22:45 -0600542exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip
Matt Mower81742fb2014-09-01 14:40:52 -0500543
Ethan Yonkera60c7862016-02-25 15:32:06 -0600544# Having /sbin/modprobe present on 32 bit devices with can cause a massive
545# performance problem if the kernel has CONFIG_MODULES=y
546ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
547 ifneq ($(TARGET_ARCH), arm64)
548 ifneq ($(TARGET_ARCH), x86_64)
549 exclude += modprobe
550 endif
551 endif
552endif
553
Matt Mower81742fb2014-09-01 14:40:52 -0500554# If busybox does not have restorecon, assume it does not have SELinux support.
555# Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts.
Matt Mower87413642017-01-17 21:14:46 -0600556ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),)
557 exclude += ls
Dees Troy8d66f8b2013-10-08 14:04:55 +0000558endif
Matt Mower81742fb2014-09-01 14:40:52 -0500559
560RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS)))
561RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS))
Dees_Troyc04dcf72012-10-02 10:46:37 -0400562$(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox
563$(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE)
564 @echo "Symlink: $@ -> $(BUSYBOX_BINARY)"
565 @mkdir -p $(dir $@)
566 @rm -rf $@
567 $(hide) ln -sf $(BUSYBOX_BINARY) $@
568
Matt Mower031163b2014-11-01 15:13:03 -0500569include $(CLEAR_VARS)
570LOCAL_MODULE := busybox_symlinks
571LOCAL_MODULE_TAGS := optional
572LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS)
Dees Troyb47f28b2014-12-11 17:20:59 +0000573ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18))
574ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS)
575endif
Matt Mower031163b2014-11-01 15:13:03 -0500576include $(BUILD_PHONY_PACKAGE)
577RECOVERY_BUSYBOX_SYMLINKS :=
578endif # !TW_USE_TOOLBOX
Dees_Troyc04dcf72012-10-02 10:46:37 -0400579
Mark Salyzyn13aca592016-03-09 14:58:16 -0800580# recovery-persist (system partition dynamic executable run after /data mounts)
581# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500582ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
583 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500584 LOCAL_SRC_FILES := \
585 recovery-persist.cpp \
586 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500587 LOCAL_MODULE := recovery-persist
588 LOCAL_SHARED_LIBRARIES := liblog libbase
589 LOCAL_CFLAGS := -Werror
590 LOCAL_INIT_RC := recovery-persist.rc
591 include $(BUILD_EXECUTABLE)
592endif
Doug Zongker73ae31c2009-12-09 17:01:45 -0800593
Mark Salyzyn13aca592016-03-09 14:58:16 -0800594# recovery-refresh (system partition dynamic executable run at init)
595# ===============================
Ethan Yonkerf1179622016-08-25 15:32:21 -0500596ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)
597 include $(CLEAR_VARS)
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500598 LOCAL_SRC_FILES := \
599 recovery-refresh.cpp \
600 rotate_logs.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500601 LOCAL_MODULE := recovery-refresh
Ethan Yonkerd9918b72017-09-15 08:17:42 -0500602 LOCAL_SHARED_LIBRARIES := liblog libbase
Ethan Yonkerf1179622016-08-25 15:32:21 -0500603 LOCAL_CFLAGS := -Werror
604 LOCAL_INIT_RC := recovery-refresh.rc
605 include $(BUILD_EXECUTABLE)
606endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800607
Ethan Yonker34ae4832016-08-24 15:32:18 -0500608# shared libfusesideload
609# ===============================
610include $(CLEAR_VARS)
Ethan Yonker34ae4832016-08-24 15:32:18 -0500611LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500612LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonker34ae4832016-08-24 15:32:18 -0500613LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
614
615LOCAL_MODULE_TAGS := optional
616LOCAL_MODULE := libfusesideload
Ethan Yonkerf1179622016-08-25 15:32:21 -0500617LOCAL_SHARED_LIBRARIES := libcutils libc
Ethan Yonker99af7662016-09-15 14:48:29 -0500618ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500619 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
620 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
621 LOCAL_CFLAGS += -DUSE_MINCRYPT
622else
623 LOCAL_SHARED_LIBRARIES += libcrypto
624endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500625ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
626 LOCAL_SRC_FILES := fuse_sideload22.cpp
627 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
628else
629 LOCAL_SRC_FILES := fuse_sideload.cpp
630endif
Ethan Yonker34ae4832016-08-24 15:32:18 -0500631include $(BUILD_SHARED_LIBRARY)
632
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600633# static libfusesideload
634# =============================== (required to fix build errors in 8.1 due to use by tests)
635include $(CLEAR_VARS)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600636LOCAL_CLANG := true
Ethan Yonker58f21322018-08-24 11:17:36 -0500637LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600638LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
639
640LOCAL_MODULE_TAGS := optional
641LOCAL_MODULE := libfusesideload
642LOCAL_SHARED_LIBRARIES := libcutils libc
643ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
644 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes
645 LOCAL_STATIC_LIBRARIES += libmincrypttwrp
646 LOCAL_CFLAGS += -DUSE_MINCRYPT
647else
648 LOCAL_STATIC_LIBRARIES += libcrypto_static
649endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500650ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
651 LOCAL_SRC_FILES := fuse_sideload22.cpp
652 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
653else
654 LOCAL_SRC_FILES := fuse_sideload.cpp
655endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800656include $(BUILD_STATIC_LIBRARY)
657
Elliott Hughes63a31922016-06-09 17:41:22 -0700658# libmounts (static library)
659# ===============================
660include $(CLEAR_VARS)
661LOCAL_SRC_FILES := mounts.cpp
Tao Bao5f85d1f2017-03-28 21:12:36 -0700662LOCAL_CFLAGS := \
663 -Wall \
664 -Werror
Elliott Hughes63a31922016-06-09 17:41:22 -0700665LOCAL_MODULE := libmounts
Tao Bao5f85d1f2017-03-28 21:12:36 -0700666LOCAL_STATIC_LIBRARIES := libbase
Elliott Hughes63a31922016-06-09 17:41:22 -0700667include $(BUILD_STATIC_LIBRARY)
668
Tao Bao62e0bc72017-04-10 16:55:57 -0700669# librecovery (static library)
670# ===============================
671include $(CLEAR_VARS)
672LOCAL_SRC_FILES := \
673 install.cpp
Tao Baob24510c2017-04-20 17:54:27 -0700674LOCAL_CFLAGS := -Wall -Werror
Tao Bao62e0bc72017-04-10 16:55:57 -0700675LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Tao Bao25dbe172017-04-12 23:52:20 -0700676
677ifeq ($(AB_OTA_UPDATER),true)
678 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
679endif
680
Tao Bao62e0bc72017-04-10 16:55:57 -0700681LOCAL_MODULE := librecovery
682LOCAL_STATIC_LIBRARIES := \
683 libminui \
Tao Baocfe53c22017-10-03 14:37:21 -0700684 libotautil \
Tao Baoda320ac2017-04-10 16:55:57 -0700685 libvintf_recovery \
Tao Bao62e0bc72017-04-10 16:55:57 -0700686 libcrypto_utils \
687 libcrypto \
Elliott Hughese1bb7a52017-06-28 08:00:17 -0700688 libbase \
689 libziparchive \
Tao Bao62e0bc72017-04-10 16:55:57 -0700690
691include $(BUILD_STATIC_LIBRARY)
692
Ethan Yonker34ae4832016-08-24 15:32:18 -0500693# shared libaosprecovery for Apache code
694# ===============================
Dees_Troy2673cec2013-04-02 20:22:16 +0000695include $(CLEAR_VARS)
696
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800697
Dees_Troy2673cec2013-04-02 20:22:16 +0000698LOCAL_MODULE := libaosprecovery
Matt Mowerdb220442014-10-31 22:43:59 -0500699LOCAL_MODULE_TAGS := eng optional
Ethan Yonkerf1179622016-08-25 15:32:21 -0500700LOCAL_CFLAGS := -std=gnu++0x
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500701LOCAL_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 -0600702LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip
703LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Ethan Yonkerf1179622016-08-25 15:32:21 -0500704ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
Ethan Yonker534d4e02016-08-26 10:05:03 -0500705 LOCAL_SHARED_LIBRARIES += libstdc++ libstlport
Ethan Yonker941a8992016-12-05 09:04:30 -0600706 LOCAL_C_INCLUDES += bionic external/stlport/stlport
Ethan Yonker58f21322018-08-24 11:17:36 -0500707 LOCAL_CFLAGS += -DUSE_FUSE_SIDELOAD22
Ethan Yonker534d4e02016-08-26 10:05:03 -0500708else
709 LOCAL_SHARED_LIBRARIES += libc++
710endif
711ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
712 LOCAL_SHARED_LIBRARIES += libmincrypttwrp
Ethan Yonker941a8992016-12-05 09:04:30 -0600713 LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500714 LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp
Ethan Yonkerf1179622016-08-25 15:32:21 -0500715 LOCAL_CFLAGS += -DUSE_OLD_VERIFIER
716else
Ethan Yonker941a8992016-12-05 09:04:30 -0600717 LOCAL_SHARED_LIBRARIES += libcrypto libbase
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500718 LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -0500719 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
Ethan Yonkerf1179622016-08-25 15:32:21 -0500720endif
Tao Baoa92d8fb2017-06-20 18:11:21 -0700721
Ethan Yonker941a8992016-12-05 09:04:30 -0600722ifeq ($(AB_OTA_UPDATER),true)
723 LOCAL_CFLAGS += -DAB_OTA_UPDATER=1
724endif
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500725ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500726 LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp otautil/DirUtil.cpp
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500727 LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils
728 LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz
Ethan Yonker58f21322018-08-24 11:17:36 -0500729 LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include
730 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
731 # Android 9.0 needs c++17 for libvintf
732 LOCAL_CPPFLAGS += -std=c++17
733 # Android 9.0's libvintf also needs this library
734 LOCAL_STATIC_LIBRARIES += libhidl-gen-utils
735 endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800736else
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500737 LOCAL_CFLAGS += -DUSE_MINZIP
Doug Zongker73ae31c2009-12-09 17:01:45 -0800738endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000739
740include $(BUILD_SHARED_LIBRARY)
Tao Baod80a9982016-03-03 11:43:47 -0800741# libverifier (static library)
742# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700743include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700744LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700745LOCAL_MODULE := libverifier
Kenny Root7a4adb52013-10-09 10:14:35 -0700746LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700747 asn1_decoder.cpp \
Tao Baod7bf82e2017-03-18 09:24:11 -0700748 verifier.cpp
Tao Bao0ecbd762017-01-16 21:16:58 -0800749LOCAL_STATIC_LIBRARIES := \
Tao Bao09e468f2017-09-29 14:39:33 -0700750 libotautil \
Tao Bao0ecbd762017-01-16 21:16:58 -0800751 libcrypto_utils \
752 libcrypto \
753 libbase
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700754LOCAL_CFLAGS := -Wall -Werror
Jed Estep43291862016-02-03 17:02:09 -0800755include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800756
Tao Bao016120f2017-08-02 17:11:04 -0700757# Wear default device
758# ===============================
759include $(CLEAR_VARS)
760LOCAL_SRC_FILES := wear_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700761LOCAL_CFLAGS := -Wall -Werror
Tao Bao016120f2017-08-02 17:11:04 -0700762
763# Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk.
764LOCAL_MODULE := librecovery_ui_wear
765
766include $(BUILD_STATIC_LIBRARY)
767
Luke Songa44dba72017-06-12 16:08:33 -0700768# vr headset default device
769# ===============================
770include $(CLEAR_VARS)
771
772LOCAL_SRC_FILES := vr_device.cpp
Tianjie Xuc89d1e72017-08-28 14:15:07 -0700773LOCAL_CFLAGS := -Wall -Werror
Luke Songa44dba72017-06-12 16:08:33 -0700774
775# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
776LOCAL_MODULE := librecovery_ui_vr
777
778include $(BUILD_STATIC_LIBRARY)
779
Dees_Troy51a0e822012-09-05 15:24:24 -0400780commands_recovery_local_path := $(LOCAL_PATH)
Ethan Yonkerecbd3e82017-12-14 14:43:59 -0600781
Ethan Yonker58f21322018-08-24 11:17:36 -0500782# $(LOCAL_PATH)/edify/Android.mk
783# $(LOCAL_PATH)/otafault/Android.mk
784# $(LOCAL_PATH)/bootloader_message/Android.mk
Yabin Cui2f272c02016-06-24 18:22:02 -0700785include \
Ethan Yonker58f21322018-08-24 11:17:36 -0500786 $(commands_TWRP_local_path)/boot_control/Android.mk \
787 $(commands_TWRP_local_path)/tests/Android.mk \
788 $(commands_TWRP_local_path)/tools/Android.mk \
789 $(commands_TWRP_local_path)/updater/Android.mk \
790 $(commands_TWRP_local_path)/update_verifier/Android.mk \
791 $(commands_TWRP_local_path)/bootloader_message_twrp/Android.mk
792
793ifeq ($(shell test $(PLATFORM_SDK_VERSION) -le 25; echo $$?),0)
794include $(commands_TWRP_local_path)/bootloader_message/Android.mk
795endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400796
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500797ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
798 include $(commands_TWRP_local_path)/mtp/ffs/Android.mk
799else
800 include $(commands_TWRP_local_path)/mtp/legacy/Android.mk
801endif
802
Matt Mowerf746dbb2015-05-13 22:56:31 -0500803ifeq ($(wildcard system/core/uncrypt/Android.mk),)
Ethan Yonker58f21322018-08-24 11:17:36 -0500804 #include $(commands_TWRP_local_path)/uncrypt/Android.mk
Matt Mowerf746dbb2015-05-13 22:56:31 -0500805endif
806
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500807ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0)
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500808 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0)
809 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
810 CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA
811 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500812 include $(commands_TWRP_local_path)/minadbd/Android.mk \
813 $(commands_TWRP_local_path)/minui/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500814else
Ethan Yonker84d61ce2017-05-10 16:11:35 -0500815 TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21
Ethan Yonker58f21322018-08-24 11:17:36 -0500816 include $(commands_TWRP_local_path)/minadbd21/Android.mk \
817 $(commands_TWRP_local_path)/minui21/Android.mk
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500818endif
819
Ethan Yonker58f21322018-08-24 11:17:36 -0500820#$(commands_TWRP_local_path)/otautil/Android.mk
Dees_Troy51a0e822012-09-05 15:24:24 -0400821#includes for TWRP
Ethan Yonker58f21322018-08-24 11:17:36 -0500822include $(commands_TWRP_local_path)/injecttwrp/Android.mk \
823 $(commands_TWRP_local_path)/htcdumlock/Android.mk \
824 $(commands_TWRP_local_path)/gui/Android.mk \
825 $(commands_TWRP_local_path)/mmcutils/Android.mk \
826 $(commands_TWRP_local_path)/bmlutils/Android.mk \
827 $(commands_TWRP_local_path)/prebuilt/Android.mk \
828 $(commands_TWRP_local_path)/mtdutils/Android.mk \
829 $(commands_TWRP_local_path)/flashutils/Android.mk \
830 $(commands_TWRP_local_path)/pigz/Android.mk \
831 $(commands_TWRP_local_path)/libtar/Android.mk \
832 $(commands_TWRP_local_path)/libcrecovery/Android.mk \
833 $(commands_TWRP_local_path)/libblkid/Android.mk \
834 $(commands_TWRP_local_path)/minuitwrp/Android.mk \
835 $(commands_TWRP_local_path)/openaes/Android.mk \
836 $(commands_TWRP_local_path)/toolbox/Android.mk \
837 $(commands_TWRP_local_path)/twrpTarMain/Android.mk \
Ethan Yonker58f21322018-08-24 11:17:36 -0500838 $(commands_TWRP_local_path)/minzip/Android.mk \
839 $(commands_TWRP_local_path)/dosfstools/Android.mk \
840 $(commands_TWRP_local_path)/etc/Android.mk \
841 $(commands_TWRP_local_path)/toybox/Android.mk \
842 $(commands_TWRP_local_path)/simg2img/Android.mk \
843 $(commands_TWRP_local_path)/adbbu/Android.mk \
844 $(commands_TWRP_local_path)/libpixelflinger/Android.mk \
845 $(commands_TWRP_local_path)/twrpDigest/Android.mk \
846 $(commands_TWRP_local_path)/attr/Android.mk
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600847
Ethan Yonker534d4e02016-08-26 10:05:03 -0500848ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
Ethan Yonker58f21322018-08-24 11:17:36 -0500849 include $(commands_TWRP_local_path)/libmincrypt/Android.mk
Ethan Yonkerf1179622016-08-25 15:32:21 -0500850endif
851
Ethan Yonker253368a2014-11-25 15:00:52 -0600852ifeq ($(TW_INCLUDE_CRYPTO), true)
Ethan Yonker98661c12018-10-17 08:39:28 -0500853 include $(commands_TWRP_local_path)/crypto/fde/Android.mk
Ethan Yonker58f21322018-08-24 11:17:36 -0500854 include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600855 ifeq ($(TW_INCLUDE_CRYPTO_FBE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500856 include $(commands_TWRP_local_path)/crypto/ext4crypt/Android.mk
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600857 endif
nkk7171c6c502017-01-05 23:55:05 +0200858 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),)
859 ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false)
Ethan Yonker58f21322018-08-24 11:17:36 -0500860 include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk
nkk7171c6c502017-01-05 23:55:05 +0200861 endif
862 endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500863 include $(commands_TWRP_local_path)/gpt/Android.mk
Ethan Yonker4eca40d2014-11-11 14:52:28 -0600864endif
Vojtech Bocek7cc278b2013-02-24 01:40:19 +0100865ifeq ($(BUILD_ID), GINGERBREAD)
866 TW_NO_EXFAT := true
867endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000868ifneq ($(TW_NO_EXFAT), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500869 include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \
870 $(commands_TWRP_local_path)/exfat/fsck/Android.mk \
871 $(commands_TWRP_local_path)/fuse/Android.mk \
872 $(commands_TWRP_local_path)/exfat/libexfat/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600873 ifneq ($(TW_NO_EXFAT_FUSE), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500874 include $(commands_TWRP_local_path)/exfat/fuse/Android.mk
Ethan Yonker34741d92016-02-06 13:22:45 -0600875 endif
Captain Throwback6a1acf22014-09-18 12:46:35 -0400876endif
Ethan Yonker03a42f62014-08-08 11:03:51 -0500877ifneq ($(TW_OEM_BUILD),true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500878 include $(commands_TWRP_local_path)/orscmd/Android.mk
Ethan Yonker03a42f62014-08-08 11:03:51 -0500879endif
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500880
Talustus3019a912013-04-06 11:50:07 +0200881# FB2PNG
882ifeq ($(TW_INCLUDE_FB2PNG), true)
Ethan Yonker58f21322018-08-24 11:17:36 -0500883 include $(commands_TWRP_local_path)/fb2png/Android.mk
Talustus3019a912013-04-06 11:50:07 +0200884endif
Matt Mower55c75ca2014-08-31 11:30:15 -0500885
Matt Mower55c75ca2014-08-31 11:30:15 -0500886endif
Ethan Yonker58f21322018-08-24 11:17:36 -0500887
888commands_TWRP_local_path :=