Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 1 | # 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 Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 17 | ifdef project-path-for |
| 18 | ifeq ($(LOCAL_PATH),$(call project-path-for,recovery)) |
| 19 | PROJECT_PATH_AGREES := true |
Andrea Mennillo | f591c87 | 2015-11-03 20:58:11 +0100 | [diff] [blame] | 20 | BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 21 | endif |
| 22 | else |
| 23 | ifeq ($(LOCAL_PATH),bootable/recovery) |
| 24 | PROJECT_PATH_AGREES := true |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 25 | BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 26 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 27 | endif |
| 28 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 29 | ifeq ($(PROJECT_PATH_AGREES),true) |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 30 | |
Matt Mower | 047723c | 2015-12-10 01:31:15 -0600 | [diff] [blame] | 31 | ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22)) |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 32 | # Make recovery domain permissive for TWRP |
that | 8e213fd | 2015-10-17 00:17:53 +0200 | [diff] [blame] | 33 | BOARD_SEPOLICY_UNION += twrp.te |
| 34 | endif |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 35 | |
Motorhead1991 | 75b6f66 | 2014-06-12 15:58:33 -0700 | [diff] [blame] | 36 | include $(CLEAR_VARS) |
| 37 | |
Matt Mower | 1777cdc | 2015-09-26 15:56:56 -0500 | [diff] [blame] | 38 | TWRES_PATH := /twres/ |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 39 | TWHTCD_PATH := $(TWRES_PATH)htcd/ |
| 40 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 41 | TARGET_RECOVERY_GUI := true |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 42 | |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 43 | ifneq ($(TW_DEVICE_VERSION),) |
| 44 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"' |
| 45 | else |
| 46 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"' |
| 47 | endif |
| 48 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 50 | twrp.cpp \ |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 51 | fixContexts.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 52 | twrpTar.cpp \ |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 53 | exclude.cpp \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 54 | find_file.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 55 | infomanager.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 56 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 57 | partition.cpp \ |
| 58 | partitionmanager.cpp \ |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 59 | progresstracking.cpp \ |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 60 | twinstall.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 61 | twrp-functions.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 62 | twrpDigestDriver.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 63 | openrecoveryscript.cpp \ |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 64 | tarWrite.c \ |
| 65 | twrpAdbBuFifo.cpp |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 66 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 67 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 68 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 69 | endif |
| 70 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | LOCAL_MODULE := recovery |
| 72 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 73 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 74 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 75 | #ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 76 | #ifeq ($(HOST_OS),linux) |
| 77 | #LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 78 | #endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 79 | #endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 80 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 81 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 82 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 83 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 84 | LOCAL_CFLAGS += -Wno-unused-parameter |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 85 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 86 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 87 | #LOCAL_STATIC_LIBRARIES := \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 88 | # libext4_utils_static \ |
| 89 | # libsparse_static \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 90 | # libminzip \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 91 | # libz \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 92 | # libmtdutils \ |
| 93 | # libmincrypt \ |
| 94 | # libminadbd \ |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 95 | # libminui \ |
| 96 | # libpixelflinger_static \ |
| 97 | # libpng \ |
| 98 | # libfs_mgr \ |
| 99 | # libcutils \ |
| 100 | # liblog \ |
| 101 | # libselinux \ |
| 102 | # libstdc++ \ |
| 103 | # libm \ |
| 104 | # libc |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 105 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 106 | LOCAL_C_INCLUDES += \ |
| 107 | system/vold \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 108 | system/extras \ |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 109 | system/core/adb \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 110 | system/core/libsparse \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 111 | external/zlib \ |
| 112 | $(LOCAL_PATH)/bootloader_message_twrp/include |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 113 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 114 | LOCAL_C_INCLUDES += bionic |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 115 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 116 | LOCAL_C_INCLUDES += external/stlport/stlport external/openssl/include |
| 117 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 118 | LOCAL_C_INCLUDES += external/boringssl/include external/libcxx/include |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 119 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 120 | |
| 121 | LOCAL_STATIC_LIBRARIES := |
| 122 | LOCAL_SHARED_LIBRARIES := |
| 123 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 124 | LOCAL_STATIC_LIBRARIES += libguitwrp |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 125 | LOCAL_SHARED_LIBRARIES += libaosprecovery libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message_twrp |
| 126 | LOCAL_SHARED_LIBRARIES += libcrecovery libtwadbbu libtwrpdigest libc++ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 127 | |
Xing | 0af1ac1 | 2015-11-27 11:19:37 -0800 | [diff] [blame] | 128 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 129 | LOCAL_SHARED_LIBRARIES += libstlport |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 130 | LOCAL_CFLAGS += -DTW_NO_SHA2_LIBRARY |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 131 | endif |
| 132 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 133 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 134 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
| 135 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 136 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 137 | LOCAL_SHARED_LIBRARIES += libcrypto |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 138 | endif |
| 139 | |
| 140 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 141 | LOCAL_SHARED_LIBRARIES += libbase |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 142 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 143 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 144 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 145 | LOCAL_SHARED_LIBRARIES += libziparchive |
| 146 | else |
| 147 | LOCAL_SHARED_LIBRARIES += libminzip |
| 148 | LOCAL_CFLAGS += -DUSE_MINZIP |
| 149 | endif |
| 150 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 151 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 152 | LOCAL_SHARED_LIBRARIES += libsparse |
| 153 | endif |
| 154 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 155 | ifeq ($(TW_OEM_BUILD),true) |
| 156 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 157 | BOARD_HAS_NO_REAL_SDCARD := true |
| 158 | TW_USE_TOOLBOX := true |
| 159 | TW_EXCLUDE_SUPERSU := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 160 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 161 | endif |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 162 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 163 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 164 | LOCAL_CFLAGS += -DUSE_EXT4 |
| 165 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 166 | LOCAL_SHARED_LIBRARIES += libext4_utils |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 167 | ifneq ($(wildcard external/lz4/Android.mk),) |
Humberto Borba | 443af21 | 2016-08-30 18:06:30 -0300 | [diff] [blame] | 168 | #LOCAL_STATIC_LIBRARIES += liblz4 |
Tom Marshall | 56fe5e7 | 2015-04-17 05:23:00 -0700 | [diff] [blame] | 169 | endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 170 | endif |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 171 | LOCAL_C_INCLUDES += external/libselinux/include |
| 172 | LOCAL_SHARED_LIBRARIES += libselinux |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 173 | #ifneq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 174 | # LOCAL_CFLAGS += -DUSE_EXT4 |
| 175 | # LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 176 | # LOCAL_SHARED_LIBRARIES += libext4_utils |
| 177 | # ifneq ($(wildcard external/lz4/Android.mk),) |
| 178 | # LOCAL_STATIC_LIBRARIES += liblz4 |
| 179 | # endif |
| 180 | #endif |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 181 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 182 | ifeq ($(AB_OTA_UPDATER),true) |
| 183 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 184 | LOCAL_SHARED_LIBRARIES += libhardware |
| 185 | LOCAL_ADDITIONAL_DEPENDENCIES += libhardware |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 186 | endif |
| 187 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 188 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 189 | |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 190 | #ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 191 | # LOCAL_SRC_FILES += default_device.cpp |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 192 | #else |
| 193 | # LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 194 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 195 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 196 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 197 | |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 198 | tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null) |
| 199 | ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1) |
| 200 | tw_git_revision := $(tw_git_revision)-dirty |
| 201 | endif |
| 202 | LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"' |
| 203 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 204 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 205 | ifeq ($(TW_EXCLUDE_MTP),) |
| 206 | LOCAL_SHARED_LIBRARIES += libtwrpmtp |
| 207 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 208 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 209 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 210 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 211 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 212 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 213 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 214 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 215 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 216 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 217 | endif |
| 218 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 219 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 220 | endif |
| 221 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 222 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 223 | endif |
| 224 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 225 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 226 | endif |
| 227 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 228 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 229 | endif |
| 230 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 231 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 232 | endif |
| 233 | ifeq ($(TW_HAS_NO_RECOVERY_PARTITION), true) |
| 234 | LOCAL_CFLAGS += -DTW_HAS_NO_RECOVERY_PARTITION |
| 235 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 236 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 237 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 238 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 239 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 240 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 241 | endif |
| 242 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 243 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 244 | endif |
| 245 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 246 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 247 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 248 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 249 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 250 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 251 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 252 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 253 | endif |
| 254 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 255 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 256 | endif |
| 257 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 258 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 259 | endif |
| 260 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 261 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 262 | endif |
| 263 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 264 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 265 | endif |
| 266 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 267 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 268 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 269 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 270 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 271 | endif |
| 272 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 273 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 274 | endif |
| 275 | #ifeq ($(TW_FLASH_FROM_STORAGE), true) Making this the default behavior |
| 276 | LOCAL_CFLAGS += -DTW_FLASH_FROM_STORAGE |
| 277 | #endif |
| 278 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 279 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 280 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 281 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 282 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 283 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 284 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 285 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 286 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 287 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 288 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 289 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 290 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 291 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 292 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 293 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 294 | TW_INCLUDE_CRYPTO := true |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 295 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 296 | ifeq ($(TW_INCLUDE_L_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 297 | TW_INCLUDE_CRYPTO := true |
| 298 | endif |
| 299 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 300 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 301 | LOCAL_SHARED_LIBRARIES += libcryptfslollipop libgpt_twrp |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 302 | LOCAL_C_INCLUDES += external/boringssl/src/include |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 303 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 304 | TW_INCLUDE_CRYPTO_FBE := true |
| 305 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE |
| 306 | LOCAL_SHARED_LIBRARIES += libe4crypt |
| 307 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 308 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 309 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
| 310 | LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD |
| 311 | LOCAL_STATIC_LIBRARIES += libvolddecrypt |
| 312 | endif |
| 313 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 314 | endif |
D. Andrei Măceș | b29a5e2 | 2016-12-22 06:19:44 -0500 | [diff] [blame] | 315 | WITH_CRYPTO_UTILS := \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 316 | $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true) |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 317 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 318 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 319 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 320 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 321 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 322 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 323 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 324 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 325 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 326 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 327 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 328 | endif |
Greg Wallace | 36ade45 | 2015-11-08 13:54:25 -0500 | [diff] [blame] | 329 | ifneq ($(TW_DEFAULT_BRIGHTNESS),) |
| 330 | LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS) |
| 331 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 332 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 333 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 334 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 335 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 336 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 337 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 338 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 339 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 340 | else |
| 341 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 342 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 343 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
Michael Bestas | 4a18558 | 2017-04-28 15:45:26 +0300 | [diff] [blame] | 344 | ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),) |
| 345 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 346 | else ifeq ($(TARGET_CPU_VARIANT),krait) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 347 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 348 | endif |
| 349 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 350 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 351 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 352 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 353 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 354 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 355 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 356 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 357 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 358 | ifneq ($(TARGET_RECOVERY_INITRC),) |
| 359 | TW_EXCLUDE_DEFAULT_USB_INIT := true |
| 360 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 361 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 362 | LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD |
| 363 | endif |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 364 | ifneq ($(TW_DEFAULT_LANGUAGE),) |
| 365 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE) |
| 366 | else |
| 367 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en |
| 368 | endif |
Sergey 'Jin' Bostandzhyan | 80a90ed | 2013-01-04 02:29:03 +0100 | [diff] [blame] | 369 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 370 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 371 | dump_image \ |
| 372 | erase_image \ |
| 373 | flash_image \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 374 | mke2fs.conf \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 375 | pigz \ |
| 376 | teamwin \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 377 | toolbox_symlinks \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 378 | twrp \ |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 379 | fsck.fat \ |
| 380 | fatlabel \ |
| 381 | mkfs.fat \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 382 | permissive.sh \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 383 | simg2img_twrp \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 384 | libbootloader_message_twrp \ |
| 385 | init.recovery.hlthchrg.rc \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 386 | init.recovery.service.rc |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 387 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 388 | ifneq ($(TARGET_ARCH), arm64) |
Ethan Yonker | 4f6a976 | 2015-03-09 13:58:54 -0500 | [diff] [blame] | 389 | ifneq ($(TARGET_ARCH), x86_64) |
| 390 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker |
| 391 | else |
| 392 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 393 | endif |
Ethan Yonker | 1902c79 | 2014-12-03 16:48:36 -0600 | [diff] [blame] | 394 | else |
| 395 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 396 | endif |
| 397 | ifneq ($(TW_USE_TOOLBOX), true) |
| 398 | LOCAL_ADDITIONAL_DEPENDENCIES += busybox_symlinks |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 399 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 400 | LOCAL_POST_INSTALL_CMD := \ |
| 401 | $(hide) mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin && \ |
| 402 | ln -sf /sbin/busybox $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh |
| 403 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 404 | else |
| 405 | ifneq ($(wildcard external/toybox/Android.mk),) |
| 406 | LOCAL_ADDITIONAL_DEPENDENCIES += toybox_symlinks |
| 407 | endif |
dianlujitao | ce608ab | 2015-12-28 23:51:19 +0800 | [diff] [blame] | 408 | ifneq ($(wildcard external/zip/Android.mk),) |
| 409 | LOCAL_ADDITIONAL_DEPENDENCIES += zip |
| 410 | endif |
| 411 | ifneq ($(wildcard external/unzip/Android.mk),) |
| 412 | LOCAL_ADDITIONAL_DEPENDENCIES += unzip |
| 413 | endif |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 414 | endif |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 415 | |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 416 | ifneq ($(TW_NO_EXFAT), true) |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 417 | LOCAL_ADDITIONAL_DEPENDENCIES += mkexfatfs fsckexfat |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 418 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 419 | LOCAL_ADDITIONAL_DEPENDENCIES += exfat-fuse |
| 420 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 421 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 422 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 423 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 424 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk |
| 425 | else |
| 426 | LOCAL_ADDITIONAL_DEPENDENCIES += sgdisk_static |
| 427 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 428 | endif |
| 429 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 430 | LOCAL_ADDITIONAL_DEPENDENCIES += openaes openaes_license |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 431 | endif |
| 432 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
| 433 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 434 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 435 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 436 | endif |
| 437 | ifneq ($(TW_EXCLUDE_SUPERSU), true) |
| 438 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
Ethan Yonker | b82422a | 2016-01-20 08:48:49 -0600 | [diff] [blame] | 439 | install-recovery.sh 99SuperSUDaemon Superuser.apk |
| 440 | ifeq ($(TARGET_ARCH), arm) |
| 441 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 442 | chattr.pie libsupol.so suarm supolicy |
| 443 | endif |
| 444 | ifeq ($(TARGET_ARCH), arm64) |
| 445 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 446 | libsupol.soarm64 suarm64 supolicyarm64 |
| 447 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 448 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 449 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 450 | LOCAL_ADDITIONAL_DEPENDENCIES += fb2png |
| 451 | endif |
| 452 | ifneq ($(TW_OEM_BUILD),true) |
| 453 | LOCAL_ADDITIONAL_DEPENDENCIES += orscmd |
| 454 | endif |
| 455 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
| 456 | LOCAL_ADDITIONAL_DEPENDENCIES += bml_over_mtd |
| 457 | endif |
| 458 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 459 | LOCAL_ADDITIONAL_DEPENDENCIES += injecttwrp |
| 460 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 461 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
| 462 | LOCAL_ADDITIONAL_DEPENDENCIES += init.recovery.usb.rc |
| 463 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 464 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 465 | LOCAL_ADDITIONAL_DEPENDENCIES += logcat |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 466 | ifeq ($(TARGET_USES_LOGD), true) |
| 467 | LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc |
| 468 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 469 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 470 | # Allow devices to specify device-specific recovery dependencies |
| 471 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
| 472 | LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_RECOVERY_DEVICE_MODULES) |
| 473 | endif |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 474 | LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\" |
| 475 | LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\" |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 476 | ifeq ($(TW_INCLUDE_NTFS_3G),true) |
Jason Riordan | 6c28ee8 | 2016-05-12 09:06:57 -0400 | [diff] [blame] | 477 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 478 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 479 | mount.ntfs \ |
| 480 | fsck.ntfs \ |
| 481 | mkfs.ntfs |
| 482 | else |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 483 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 484 | ntfs-3g \ |
| 485 | ntfsfix \ |
| 486 | mkntfs |
| 487 | endif |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 488 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 489 | ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) |
| 490 | ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 3; echo $$?),0) |
| 491 | LOCAL_ADDITIONAL_DEPENDENCIES += \ |
| 492 | fsck.f2fs \ |
| 493 | mkfs.f2fs |
| 494 | endif |
| 495 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 496 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 497 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 25; echo $$?),0) |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 498 | LOCAL_ADDITIONAL_DEPENDENCIES += file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 499 | endif |
| 500 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 501 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 502 | LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh |
| 503 | endif |
| 504 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 505 | include $(BUILD_EXECUTABLE) |
| 506 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 507 | # Symlink for file_contexts |
| 508 | include $(CLEAR_VARS) |
| 509 | |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 510 | LOCAL_MODULE := file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 511 | LOCAL_MODULE_TAGS := optional |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 512 | LOCAL_REQUIRED_MODULES := file_contexts.bin |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 513 | LOCAL_POST_INSTALL_CMD := \ |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 514 | $(hide) cp -f $(OUT)/obj/ETC/file_contexts.bin_intermediates/file_contexts.concat.tmp $(TARGET_RECOVERY_ROOT_OUT)/file_contexts |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 515 | |
| 516 | include $(BUILD_PHONY_PACKAGE) |
| 517 | |
Ethan Yonker | 5c93369 | 2014-04-04 11:26:32 -0500 | [diff] [blame] | 518 | ifneq ($(TW_USE_TOOLBOX), true) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 519 | include $(CLEAR_VARS) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 520 | # Create busybox symlinks... gzip and gunzip are excluded because those need to link to pigz instead |
| 521 | BUSYBOX_LINKS := $(shell cat external/busybox/busybox-full.links) |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 522 | exclude := tune2fs mke2fs mkdosfs mkfs.vfat gzip gunzip |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 523 | |
Ethan Yonker | a60c786 | 2016-02-25 15:32:06 -0600 | [diff] [blame] | 524 | # Having /sbin/modprobe present on 32 bit devices with can cause a massive |
| 525 | # performance problem if the kernel has CONFIG_MODULES=y |
| 526 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
| 527 | ifneq ($(TARGET_ARCH), arm64) |
| 528 | ifneq ($(TARGET_ARCH), x86_64) |
| 529 | exclude += modprobe |
| 530 | endif |
| 531 | endif |
| 532 | endif |
| 533 | |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 534 | # If busybox does not have restorecon, assume it does not have SELinux support. |
| 535 | # Then, let toolbox provide 'ls' so -Z is available to list SELinux contexts. |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 536 | ifeq ($(filter restorecon, $(notdir $(BUSYBOX_LINKS))),) |
| 537 | exclude += ls |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 538 | endif |
Matt Mower | 81742fb | 2014-09-01 14:40:52 -0500 | [diff] [blame] | 539 | |
| 540 | RECOVERY_BUSYBOX_TOOLS := $(filter-out $(exclude), $(notdir $(BUSYBOX_LINKS))) |
| 541 | RECOVERY_BUSYBOX_SYMLINKS := $(addprefix $(TARGET_RECOVERY_ROOT_OUT)/sbin/, $(RECOVERY_BUSYBOX_TOOLS)) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 542 | $(RECOVERY_BUSYBOX_SYMLINKS): BUSYBOX_BINARY := busybox |
| 543 | $(RECOVERY_BUSYBOX_SYMLINKS): $(LOCAL_INSTALLED_MODULE) |
| 544 | @echo "Symlink: $@ -> $(BUSYBOX_BINARY)" |
| 545 | @mkdir -p $(dir $@) |
| 546 | @rm -rf $@ |
| 547 | $(hide) ln -sf $(BUSYBOX_BINARY) $@ |
| 548 | |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 549 | include $(CLEAR_VARS) |
| 550 | LOCAL_MODULE := busybox_symlinks |
| 551 | LOCAL_MODULE_TAGS := optional |
| 552 | LOCAL_ADDITIONAL_DEPENDENCIES := $(RECOVERY_BUSYBOX_SYMLINKS) |
Dees Troy | b47f28b | 2014-12-11 17:20:59 +0000 | [diff] [blame] | 553 | ifneq (,$(filter $(PLATFORM_SDK_VERSION),16 17 18)) |
| 554 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_BUSYBOX_SYMLINKS) |
| 555 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 556 | include $(BUILD_PHONY_PACKAGE) |
| 557 | RECOVERY_BUSYBOX_SYMLINKS := |
| 558 | endif # !TW_USE_TOOLBOX |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 559 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 560 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 561 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 562 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 563 | include $(CLEAR_VARS) |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 564 | LOCAL_SRC_FILES := \ |
| 565 | recovery-persist.cpp \ |
| 566 | rotate_logs.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 567 | LOCAL_MODULE := recovery-persist |
| 568 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 569 | LOCAL_CFLAGS := -Werror |
| 570 | LOCAL_INIT_RC := recovery-persist.rc |
| 571 | include $(BUILD_EXECUTABLE) |
| 572 | endif |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 573 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 574 | # recovery-refresh (system partition dynamic executable run at init) |
| 575 | # =============================== |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 576 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) |
| 577 | include $(CLEAR_VARS) |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 578 | LOCAL_SRC_FILES := \ |
| 579 | recovery-refresh.cpp \ |
| 580 | rotate_logs.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 581 | LOCAL_MODULE := recovery-refresh |
Ethan Yonker | d9918b7 | 2017-09-15 08:17:42 -0500 | [diff] [blame] | 582 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 583 | LOCAL_CFLAGS := -Werror |
| 584 | LOCAL_INIT_RC := recovery-refresh.rc |
| 585 | include $(BUILD_EXECUTABLE) |
| 586 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 587 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 588 | # shared libfusesideload |
| 589 | # =============================== |
| 590 | include $(CLEAR_VARS) |
| 591 | LOCAL_SRC_FILES := fuse_sideload.cpp |
| 592 | LOCAL_CLANG := true |
Tao Bao | 20126e1 | 2017-04-26 12:30:46 -0700 | [diff] [blame] | 593 | LOCAL_CFLAGS := -Wall -Werror |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 594 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 595 | |
| 596 | LOCAL_MODULE_TAGS := optional |
| 597 | LOCAL_MODULE := libfusesideload |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 598 | LOCAL_SHARED_LIBRARIES := libcutils libc |
Ethan Yonker | 99af766 | 2016-09-15 14:48:29 -0500 | [diff] [blame] | 599 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 600 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
| 601 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
| 602 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 603 | else |
| 604 | LOCAL_SHARED_LIBRARIES += libcrypto |
| 605 | endif |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 606 | include $(BUILD_SHARED_LIBRARY) |
| 607 | |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 608 | # static libfusesideload |
| 609 | # =============================== (required to fix build errors in 8.1 due to use by tests) |
| 610 | include $(CLEAR_VARS) |
| 611 | LOCAL_SRC_FILES := fuse_sideload.cpp |
| 612 | LOCAL_CLANG := true |
| 613 | LOCAL_CFLAGS := -Wall -Werror |
| 614 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 615 | |
| 616 | LOCAL_MODULE_TAGS := optional |
| 617 | LOCAL_MODULE := libfusesideload |
| 618 | LOCAL_SHARED_LIBRARIES := libcutils libc |
| 619 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 620 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/libmincrypt/includes |
| 621 | LOCAL_STATIC_LIBRARIES += libmincrypttwrp |
| 622 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 623 | else |
| 624 | LOCAL_STATIC_LIBRARIES += libcrypto_static |
| 625 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 626 | include $(BUILD_STATIC_LIBRARY) |
| 627 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 628 | # libmounts (static library) |
| 629 | # =============================== |
| 630 | include $(CLEAR_VARS) |
| 631 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 632 | LOCAL_CFLAGS := \ |
| 633 | -Wall \ |
| 634 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 635 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 636 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 637 | include $(BUILD_STATIC_LIBRARY) |
| 638 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 639 | # librecovery (static library) |
| 640 | # =============================== |
| 641 | include $(CLEAR_VARS) |
| 642 | LOCAL_SRC_FILES := \ |
| 643 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 644 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 645 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 25dbe17 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 646 | |
| 647 | ifeq ($(AB_OTA_UPDATER),true) |
| 648 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 649 | endif |
| 650 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 651 | LOCAL_MODULE := librecovery |
| 652 | LOCAL_STATIC_LIBRARIES := \ |
| 653 | libminui \ |
Tao Bao | da320ac | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 654 | libvintf_recovery \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 655 | libcrypto_utils \ |
| 656 | libcrypto \ |
Elliott Hughes | e1bb7a5 | 2017-06-28 08:00:17 -0700 | [diff] [blame] | 657 | libbase \ |
| 658 | libziparchive \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 659 | |
| 660 | include $(BUILD_STATIC_LIBRARY) |
| 661 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 662 | # shared libaosprecovery for Apache code |
| 663 | # =============================== |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 664 | include $(CLEAR_VARS) |
| 665 | |
| 666 | LOCAL_MODULE := libaosprecovery |
Matt Mower | db22044 | 2014-10-31 22:43:59 -0500 | [diff] [blame] | 667 | LOCAL_MODULE_TAGS := eng optional |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 668 | LOCAL_CFLAGS := -std=gnu++0x |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 669 | LOCAL_SRC_FILES := adb_install.cpp legacy_property_service.cpp set_metadata.cpp tw_atomic.cpp installcommand.cpp zipwrap.cpp |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 670 | LOCAL_SHARED_LIBRARIES += libc liblog libcutils libmtdutils libfusesideload libselinux libminzip |
| 671 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 672 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 673 | LOCAL_SHARED_LIBRARIES += libstdc++ libstlport |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 674 | LOCAL_C_INCLUDES += bionic external/stlport/stlport |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 675 | else |
| 676 | LOCAL_SHARED_LIBRARIES += libc++ |
| 677 | endif |
| 678 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 679 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 680 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 681 | LOCAL_SRC_FILES += verifier24/verifier.cpp verifier24/asn1_decoder.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 682 | LOCAL_CFLAGS += -DUSE_OLD_VERIFIER |
| 683 | else |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 684 | LOCAL_SHARED_LIBRARIES += libcrypto libbase |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 685 | LOCAL_SRC_FILES += verifier.cpp asn1_decoder.cpp |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 686 | endif |
Tao Bao | a92d8fb | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 687 | |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 688 | ifeq ($(AB_OTA_UPDATER),true) |
| 689 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 690 | endif |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 691 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
| 692 | LOCAL_SRC_FILES += otautil/ZipUtil.cpp otautil/SysUtil.cpp |
| 693 | LOCAL_SHARED_LIBRARIES += libziparchive libext4_utils libcrypto libcrypto_utils |
| 694 | LOCAL_STATIC_LIBRARIES += libvintf_recovery libfs_mgr liblogwrap libavb libvintf libtinyxml2 libz |
| 695 | LOCAL_WHOLE_STATIC_LIBRARIES += |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 696 | else |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 697 | LOCAL_CFLAGS += -DUSE_MINZIP |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 698 | endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 699 | |
| 700 | include $(BUILD_SHARED_LIBRARY) |
| 701 | |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 702 | # All the APIs for testing |
| 703 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 704 | LOCAL_CLANG := true |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 705 | LOCAL_MODULE := libverifier |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 706 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 707 | asn1_decoder.cpp \ |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 708 | verifier.cpp \ |
| 709 | ui.cpp |
Hashcode | 5733215 | 2016-12-20 01:30:49 +0100 | [diff] [blame] | 710 | LOCAL_STATIC_LIBRARIES := libcrypto_static |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 711 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 712 | |
Tao Bao | 016120f | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 713 | # Wear default device |
| 714 | # =============================== |
| 715 | include $(CLEAR_VARS) |
| 716 | LOCAL_SRC_FILES := wear_device.cpp |
| 717 | |
| 718 | # Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk. |
| 719 | LOCAL_MODULE := librecovery_ui_wear |
| 720 | |
| 721 | include $(BUILD_STATIC_LIBRARY) |
| 722 | |
Luke Song | a44dba7 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 723 | # vr headset default device |
| 724 | # =============================== |
| 725 | include $(CLEAR_VARS) |
| 726 | |
| 727 | LOCAL_SRC_FILES := vr_device.cpp |
| 728 | |
| 729 | # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk |
| 730 | LOCAL_MODULE := librecovery_ui_vr |
| 731 | |
| 732 | include $(BUILD_STATIC_LIBRARY) |
| 733 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 734 | commands_recovery_local_path := $(LOCAL_PATH) |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 735 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 736 | include \ |
| 737 | $(LOCAL_PATH)/applypatch/Android.mk \ |
Alex Deymo | fb00d82 | 2016-11-08 15:46:07 -0800 | [diff] [blame] | 738 | $(LOCAL_PATH)/boot_control/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 739 | $(LOCAL_PATH)/edify/Android.mk \ |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 740 | $(LOCAL_PATH)/otafault/Android.mk \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 741 | $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 742 | $(LOCAL_PATH)/tools/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 743 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 1171d3a | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 744 | $(LOCAL_PATH)/update_verifier/Android.mk \ |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 745 | $(LOCAL_PATH)/bootloader_message/Android.mk \ |
| 746 | $(LOCAL_PATH)/bootloader_message_twrp/Android.mk |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 747 | |
Matt Mower | f746dbb | 2015-05-13 22:56:31 -0500 | [diff] [blame] | 748 | ifeq ($(wildcard system/core/uncrypt/Android.mk),) |
| 749 | include $(commands_recovery_local_path)/uncrypt/Android.mk |
| 750 | endif |
| 751 | |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 752 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 753 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 26; echo $$?),0) |
| 754 | TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA |
| 755 | CLANG_TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_WITH_DATA |
| 756 | endif |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 757 | include $(commands_recovery_local_path)/minadbd/Android.mk \ |
| 758 | $(commands_recovery_local_path)/minui/Android.mk |
| 759 | else |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 760 | TARGET_GLOBAL_CFLAGS += -DTW_USE_MINUI_21 |
| 761 | include $(commands_recovery_local_path)/minadbd21/Android.mk \ |
| 762 | $(commands_recovery_local_path)/minui21/Android.mk |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 763 | endif |
| 764 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 765 | #includes for TWRP |
Dees_Troy | 930bf01 | 2013-08-10 22:19:03 +0000 | [diff] [blame] | 766 | include $(commands_recovery_local_path)/injecttwrp/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 767 | $(commands_recovery_local_path)/htcdumlock/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 768 | $(commands_recovery_local_path)/gui/Android.mk \ |
| 769 | $(commands_recovery_local_path)/mmcutils/Android.mk \ |
| 770 | $(commands_recovery_local_path)/bmlutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 771 | $(commands_recovery_local_path)/prebuilt/Android.mk \ |
| 772 | $(commands_recovery_local_path)/mtdutils/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 773 | $(commands_recovery_local_path)/flashutils/Android.mk \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 774 | $(commands_recovery_local_path)/pigz/Android.mk \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 775 | $(commands_recovery_local_path)/libtar/Android.mk \ |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 776 | $(commands_recovery_local_path)/libcrecovery/Android.mk \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 777 | $(commands_recovery_local_path)/libblkid/Android.mk \ |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 778 | $(commands_recovery_local_path)/minuitwrp/Android.mk \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 779 | $(commands_recovery_local_path)/otautil/Android.mk \ |
Dees Troy | 8d66f8b | 2013-10-08 14:04:55 +0000 | [diff] [blame] | 780 | $(commands_recovery_local_path)/openaes/Android.mk \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 781 | $(commands_recovery_local_path)/toolbox/Android.mk \ |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 782 | $(commands_recovery_local_path)/twrpTarMain/Android.mk \ |
Ethan Yonker | 738be7a | 2014-12-10 11:40:43 -0600 | [diff] [blame] | 783 | $(commands_recovery_local_path)/mtp/Android.mk \ |
Ethan Yonker | 2d11d49 | 2014-12-12 11:43:21 -0600 | [diff] [blame] | 784 | $(commands_recovery_local_path)/minzip/Android.mk \ |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 785 | $(commands_recovery_local_path)/dosfstools/Android.mk \ |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 786 | $(commands_recovery_local_path)/etc/Android.mk \ |
| 787 | $(commands_recovery_local_path)/toybox/Android.mk \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 788 | $(commands_recovery_local_path)/simg2img/Android.mk \ |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 789 | $(commands_recovery_local_path)/adbbu/Android.mk \ |
Ethan Yonker | 9175844 | 2017-02-03 13:24:31 -0600 | [diff] [blame] | 790 | $(commands_recovery_local_path)/libpixelflinger/Android.mk \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 791 | $(commands_recovery_local_path)/twrpDigest/Android.mk \ |
Ethan Yonker | 9175844 | 2017-02-03 13:24:31 -0600 | [diff] [blame] | 792 | $(commands_recovery_local_path)/attr/Android.mk |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 793 | |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 794 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 795 | include $(commands_recovery_local_path)/libmincrypt/Android.mk |
| 796 | endif |
| 797 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 798 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 799 | include $(commands_recovery_local_path)/crypto/lollipop/Android.mk |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 800 | include $(commands_recovery_local_path)/crypto/scrypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 801 | ifeq ($(TW_INCLUDE_CRYPTO_FBE), true) |
| 802 | include $(commands_recovery_local_path)/crypto/ext4crypt/Android.mk |
| 803 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 804 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 805 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
| 806 | include $(commands_recovery_local_path)/crypto/vold_decrypt/Android.mk |
| 807 | endif |
| 808 | endif |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 809 | include $(commands_recovery_local_path)/gpt/Android.mk |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 810 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 811 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 812 | TW_NO_EXFAT := true |
| 813 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 814 | ifneq ($(TW_NO_EXFAT), true) |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 815 | include $(commands_recovery_local_path)/exfat/mkfs/Android.mk \ |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 816 | $(commands_recovery_local_path)/exfat/fsck/Android.mk \ |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 817 | $(commands_recovery_local_path)/fuse/Android.mk \ |
| 818 | $(commands_recovery_local_path)/exfat/libexfat/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 819 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
| 820 | include $(commands_recovery_local_path)/exfat/fuse/Android.mk |
| 821 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 822 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 823 | ifneq ($(TW_OEM_BUILD),true) |
| 824 | include $(commands_recovery_local_path)/orscmd/Android.mk |
| 825 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 826 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 827 | # FB2PNG |
| 828 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
| 829 | include $(commands_recovery_local_path)/fb2png/Android.mk |
| 830 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 831 | |
| 832 | commands_recovery_local_path := |
| 833 | |
| 834 | endif |