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) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 16 | commands_TWRP_local_path := $(LOCAL_PATH) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 17 | |
Ethan Yonker | 66bcd49 | 2018-12-20 09:03:17 -0600 | [diff] [blame] | 18 | ifneq ($(project-path-for),) |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 19 | ifeq ($(LOCAL_PATH),$(call project-path-for,recovery)) |
| 20 | PROJECT_PATH_AGREES := true |
Andrea Mennillo | f591c87 | 2015-11-03 20:58:11 +0100 | [diff] [blame] | 21 | BOARD_SEPOLICY_DIRS += $(call project-path-for,recovery)/sepolicy |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 22 | endif |
| 23 | else |
| 24 | ifeq ($(LOCAL_PATH),bootable/recovery) |
| 25 | PROJECT_PATH_AGREES := true |
Ethan Yonker | 11309e9 | 2015-07-01 07:58:56 -0500 | [diff] [blame] | 26 | BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy |
Ethan Yonker | f0a7e59 | 2019-04-04 10:06:41 -0500 | [diff] [blame] | 27 | else |
| 28 | ifeq ($(LOCAL_PATH),bootable/recovery-twrp) |
| 29 | ifeq ($(RECOVERY_VARIANT),twrp) |
| 30 | PROJECT_PATH_AGREES := true |
| 31 | BOARD_SEPOLICY_DIRS += bootable/recovery-twrp/sepolicy |
| 32 | endif |
| 33 | endif |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 34 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 35 | endif |
| 36 | |
Matt Mower | 66766fe | 2014-10-06 18:03:39 -0500 | [diff] [blame] | 37 | ifeq ($(PROJECT_PATH_AGREES),true) |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 38 | |
Michael Bestas | 0cc2376 | 2018-07-13 21:37:56 +0300 | [diff] [blame] | 39 | ifeq ($(CM_PLATFORM_SDK_VERSION),) |
| 40 | CM_PLATFORM_SDK_VERSION := 0 |
| 41 | endif |
| 42 | |
Motorhead1991 | 75b6f66 | 2014-06-12 15:58:33 -0700 | [diff] [blame] | 43 | include $(CLEAR_VARS) |
| 44 | |
Matt Mower | 1777cdc | 2015-09-26 15:56:56 -0500 | [diff] [blame] | 45 | TWRES_PATH := /twres/ |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 46 | TWHTCD_PATH := $(TWRES_PATH)htcd/ |
| 47 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 48 | TARGET_RECOVERY_GUI := true |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 49 | |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 50 | LOCAL_STATIC_LIBRARIES := |
| 51 | LOCAL_SHARED_LIBRARIES := |
| 52 | |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 53 | ifneq ($(TW_DEVICE_VERSION),) |
| 54 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-$(TW_DEVICE_VERSION)"' |
| 55 | else |
| 56 | LOCAL_CFLAGS += -DTW_DEVICE_VERSION='"-0"' |
| 57 | endif |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 58 | LOCAL_CFLAGS += -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) |
bigbiff bigbiff | 584b977 | 2016-12-08 21:21:17 -0500 | [diff] [blame] | 59 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 60 | LOCAL_SRC_FILES := \ |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 61 | twrp.cpp \ |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 62 | fixContexts.cpp \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 63 | twrpTar.cpp \ |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 64 | exclude.cpp \ |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 65 | find_file.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 66 | infomanager.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 67 | data.cpp \ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 68 | partition.cpp \ |
| 69 | partitionmanager.cpp \ |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 70 | progresstracking.cpp \ |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 71 | startupArgs.cpp \ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 72 | twrp-functions.cpp \ |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 73 | twrpDigestDriver.cpp \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 74 | openrecoveryscript.cpp \ |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 75 | tarWrite.c \ |
bigbiff | 32cbabe | 2020-04-12 19:16:19 -0400 | [diff] [blame] | 76 | twrpAdbBuFifo.cpp \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 77 | twrpApex.cpp \ |
| 78 | twrpRepacker.cpp |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 79 | |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 80 | LOCAL_STATIC_LIBRARIES += libavb libtwrpinstall |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 81 | LOCAL_SHARED_LIBRARIES += libfs_mgr libinit |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 82 | LOCAL_C_INCLUDES += \ |
| 83 | system/core/fs_mgr/libfs_avb/include/ \ |
| 84 | system/core/fs_mgr/include_fstab/ \ |
| 85 | system/core/fs_mgr/include/ \ |
| 86 | system/core/fs_mgr/libdm/include/ \ |
| 87 | system/core/fs_mgr/liblp/include/ \ |
| 88 | system/gsid/include/ \ |
| 89 | system/core/init/ \ |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 90 | system/extras/ext4_utils/include \ |
| 91 | $(LOCAL_PATH)/twinstall/include |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 92 | |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 93 | ifneq ($(TARGET_RECOVERY_REBOOT_SRC),) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 94 | LOCAL_SRC_FILES += $(TARGET_RECOVERY_REBOOT_SRC) |
| 95 | endif |
| 96 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 97 | LOCAL_MODULE := recovery |
| 98 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 99 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 100 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 101 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 102 | LOCAL_CFLAGS += -Wno-unused-parameter -Wno-unused-function |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 103 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 104 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 105 | LOCAL_C_INCLUDES += \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 106 | bionic \ |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 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 \ |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 112 | system/core/libpixelflinger/include \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 113 | system/core/libziparchive/include \ |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 114 | external/freetype/include \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 115 | external/boringssl/include \ |
| 116 | external/libcxx/include \ |
| 117 | external/libselinux/include \ |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 118 | $(LOCAL_PATH)/recovery_ui/include \ |
| 119 | $(LOCAL_PATH)/otautil/include \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 120 | $(LOCAL_PATH)/install/include \ |
| 121 | $(LOCAL_PATH)/fuse_sideload/include \ |
| 122 | $(LOCAL_PATH)/install/include \ |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 123 | $(LOCAL_PATH)/twrpinstall/include |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 124 | |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 125 | LOCAL_STATIC_LIBRARIES += libguitwrp |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 126 | LOCAL_SHARED_LIBRARIES += libz libc libcutils libstdc++ libtar libblkid libminuitwrp libminadbd libmtdutils libtwadbbu libbootloader_message |
bigbiff | 7ed5106 | 2020-12-02 13:18:20 -0500 | [diff] [blame] | 127 | LOCAL_SHARED_LIBRARIES += libcrecovery libtwrpdigest libc++ libaosprecovery libinit libcrypto libbase libziparchive libselinux |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 128 | |
Dees_Troy | 4546fe7 | 2013-01-10 14:33:27 +0000 | [diff] [blame] | 129 | ifneq ($(wildcard system/core/libsparse/Android.mk),) |
| 130 | LOCAL_SHARED_LIBRARIES += libsparse |
| 131 | endif |
| 132 | |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 133 | ifeq ($(TW_OEM_BUILD),true) |
| 134 | LOCAL_CFLAGS += -DTW_OEM_BUILD |
| 135 | BOARD_HAS_NO_REAL_SDCARD := true |
| 136 | TW_USE_TOOLBOX := true |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 137 | TW_EXCLUDE_MTP := true |
Ethan Yonker | 7af51ce | 2014-04-04 13:33:30 -0500 | [diff] [blame] | 138 | endif |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 139 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 140 | ifeq ($(AB_OTA_UPDATER),true) |
| 141 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
bigbiff bigbiff | c630cee | 2019-01-03 20:14:06 -0500 | [diff] [blame] | 142 | LOCAL_SHARED_LIBRARIES += libhardware android.hardware.boot@1.0 |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 143 | TWRP_REQUIRED_MODULES += libhardware android.hardware.boot@1.0-service android.hardware.boot@1.0-service.rc |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 144 | endif |
| 145 | |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 146 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 147 | LOCAL_CFLAGS += -DPRODUCT_USE_DYNAMIC_PARTITIONS=1 |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 148 | TWRP_REQUIRED_MODULES += android.hardware.health@2.0-service android.hardware.health@2.0-service.rc |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 149 | endif |
| 150 | |
Mohd Faraz | 9a4ef26 | 2020-10-18 23:58:21 +0530 | [diff] [blame] | 151 | ifeq ($(TW_USES_VENDOR_LIBS),true) |
| 152 | LOCAL_CFLAGS += -DUSE_VENDOR_LIBS=1 |
| 153 | endif |
| 154 | |
Ian Macdonald | 160e8d3 | 2020-09-29 20:47:31 +0200 | [diff] [blame] | 155 | ifneq ($(BOARD_GOOGLE_DYNAMIC_PARTITIONS_PARTITION_LIST),) |
| 156 | BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST := $(BOARD_GOOGLE_DYNAMIC_PARTITIONS_PARTITION_LIST) |
| 157 | else ifneq ($(BOARD_QTI_DYNAMIC_PARTITIONS_PARTITION_LIST),) |
| 158 | BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST := $(BOARD_QTI_DYNAMIC_PARTITIONS_PARTITION_LIST) |
Mohammad Afaneh | 2d9953a | 2020-10-24 13:33:26 +0300 | [diff] [blame] | 159 | else ifneq ($(BOARD_SAMSUNG_DYNAMIC_PARTITIONS_PARTITION_LIST),) |
| 160 | BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST := $(BOARD_SAMSUNG_DYNAMIC_PARTITIONS_PARTITION_LIST) |
Ian Macdonald | 160e8d3 | 2020-09-29 20:47:31 +0200 | [diff] [blame] | 161 | endif |
| 162 | ifneq ($(BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST),) |
| 163 | LOCAL_CFLAGS += "-DBOARD_DYNAMIC_PARTITIONS_PARTITION_LIST=\"$(shell echo $(BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST) | sed -r 's/\b(.)/\u\1/g' | sed -e 's/ \+/, /g')\"" |
| 164 | endif |
| 165 | |
bigbiff | 32cbabe | 2020-04-12 19:16:19 -0400 | [diff] [blame] | 166 | ifeq ($(TW_NO_BIND_SYSTEM),true) |
| 167 | LOCAL_CFLAGS += -DTW_NO_BIND_SYSTEM |
| 168 | endif |
| 169 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 170 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/bin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 171 | |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 172 | ifeq ($(TARGET_RECOVERY_TWRP_LIB),) |
| 173 | LOCAL_SRC_FILES += BasePartition.cpp |
| 174 | else |
| 175 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_TWRP_LIB) |
| 176 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 177 | |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 178 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
| 179 | |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 180 | tw_git_revision := $(shell git -C $(LOCAL_PATH) rev-parse --short=8 HEAD 2>/dev/null) |
| 181 | ifeq ($(shell git -C $(LOCAL_PATH) diff --quiet; echo $$?),1) |
| 182 | tw_git_revision := $(tw_git_revision)-dirty |
| 183 | endif |
| 184 | LOCAL_CFLAGS += -DTW_GIT_REVISION='"$(tw_git_revision)"' |
| 185 | |
mauronofrio | babc15e | 2020-03-16 14:59:39 +0000 | [diff] [blame] | 186 | ifeq ($(TW_FORCE_USE_BUSYBOX), true) |
| 187 | TW_USE_TOOLBOX := false |
| 188 | else |
| 189 | TW_USE_TOOLBOX := true |
| 190 | endif |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 191 | ifeq ($(TW_EXCLUDE_MTP),) |
| 192 | LOCAL_SHARED_LIBRARIES += libtwrpmtp-ffs |
| 193 | endif |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 194 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 195 | #TWRP Build Flags |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 196 | ifeq ($(TW_EXCLUDE_MTP),) |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 197 | LOCAL_CFLAGS += -DTW_HAS_MTP |
| 198 | endif |
Ricardo Gomez | c9ecd44 | 2013-07-05 16:13:52 -0700 | [diff] [blame] | 199 | ifneq ($(TW_NO_SCREEN_TIMEOUT),) |
| 200 | LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT |
| 201 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 202 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD), true) |
| 203 | LOCAL_CFLAGS += -DBOARD_HAS_NO_REAL_SDCARD |
| 204 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 205 | ifneq ($(RECOVERY_SDCARD_ON_DATA),) |
| 206 | LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA |
| 207 | endif |
| 208 | ifneq ($(TW_INCLUDE_DUMLOCK),) |
| 209 | LOCAL_CFLAGS += -DTW_INCLUDE_DUMLOCK |
| 210 | endif |
| 211 | ifneq ($(TW_INTERNAL_STORAGE_PATH),) |
| 212 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_PATH=$(TW_INTERNAL_STORAGE_PATH) |
| 213 | endif |
| 214 | ifneq ($(TW_INTERNAL_STORAGE_MOUNT_POINT),) |
| 215 | LOCAL_CFLAGS += -DTW_INTERNAL_STORAGE_MOUNT_POINT=$(TW_INTERNAL_STORAGE_MOUNT_POINT) |
| 216 | endif |
| 217 | ifneq ($(TW_EXTERNAL_STORAGE_PATH),) |
| 218 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_PATH=$(TW_EXTERNAL_STORAGE_PATH) |
| 219 | endif |
| 220 | ifneq ($(TW_EXTERNAL_STORAGE_MOUNT_POINT),) |
| 221 | LOCAL_CFLAGS += -DTW_EXTERNAL_STORAGE_MOUNT_POINT=$(TW_EXTERNAL_STORAGE_MOUNT_POINT) |
| 222 | endif |
ChampionSwimmer | cf33e4d | 2013-02-03 13:59:22 +0530 | [diff] [blame] | 223 | ifeq ($(TW_HAS_NO_BOOT_PARTITION), true) |
| 224 | LOCAL_CFLAGS += -DTW_HAS_NO_BOOT_PARTITION |
| 225 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 226 | ifeq ($(TW_NO_REBOOT_BOOTLOADER), true) |
| 227 | LOCAL_CFLAGS += -DTW_NO_REBOOT_BOOTLOADER |
| 228 | endif |
| 229 | ifeq ($(TW_NO_REBOOT_RECOVERY), true) |
| 230 | LOCAL_CFLAGS += -DTW_NO_REBOOT_RECOVERY |
| 231 | endif |
| 232 | ifeq ($(TW_NO_BATT_PERCENT), true) |
| 233 | LOCAL_CFLAGS += -DTW_NO_BATT_PERCENT |
| 234 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 235 | ifeq ($(TW_NO_CPU_TEMP), true) |
| 236 | LOCAL_CFLAGS += -DTW_NO_CPU_TEMP |
| 237 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 238 | ifneq ($(TW_CUSTOM_POWER_BUTTON),) |
| 239 | LOCAL_CFLAGS += -DTW_CUSTOM_POWER_BUTTON=$(TW_CUSTOM_POWER_BUTTON) |
| 240 | endif |
| 241 | ifeq ($(TW_ALWAYS_RMRF), true) |
| 242 | LOCAL_CFLAGS += -DTW_ALWAYS_RMRF |
| 243 | endif |
| 244 | ifeq ($(TW_NEVER_UNMOUNT_SYSTEM), true) |
| 245 | LOCAL_CFLAGS += -DTW_NEVER_UNMOUNT_SYSTEM |
| 246 | endif |
| 247 | ifeq ($(TW_NO_USB_STORAGE), true) |
| 248 | LOCAL_CFLAGS += -DTW_NO_USB_STORAGE |
| 249 | endif |
| 250 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
| 251 | LOCAL_CFLAGS += -DTW_INCLUDE_INJECTTWRP |
| 252 | endif |
| 253 | ifeq ($(TW_INCLUDE_BLOBPACK), true) |
| 254 | LOCAL_CFLAGS += -DTW_INCLUDE_BLOBPACK |
| 255 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 256 | ifneq ($(TARGET_USE_CUSTOM_LUN_FILE_PATH),) |
| 257 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(TARGET_USE_CUSTOM_LUN_FILE_PATH)\" |
| 258 | endif |
| 259 | ifneq ($(BOARD_UMS_LUNFILE),) |
| 260 | LOCAL_CFLAGS += -DCUSTOM_LUN_FILE=\"$(BOARD_UMS_LUNFILE)\" |
| 261 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 262 | ifeq ($(TW_HAS_DOWNLOAD_MODE), true) |
| 263 | LOCAL_CFLAGS += -DTW_HAS_DOWNLOAD_MODE |
| 264 | endif |
mauronofrio | e9a49ef | 2018-10-03 13:38:16 +0200 | [diff] [blame] | 265 | ifeq ($(TW_HAS_EDL_MODE), true) |
| 266 | LOCAL_CFLAGS += -DTW_HAS_EDL_MODE |
| 267 | endif |
bigbiff bigbiff | 8794036 | 2013-03-09 09:58:50 -0500 | [diff] [blame] | 268 | ifeq ($(TW_NO_SCREEN_BLANK), true) |
| 269 | LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK |
| 270 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 271 | ifeq ($(TW_SDEXT_NO_EXT4), true) |
| 272 | LOCAL_CFLAGS += -DTW_SDEXT_NO_EXT4 |
| 273 | endif |
Dees_Troy | fdf5fcc | 2012-09-11 10:27:01 -0400 | [diff] [blame] | 274 | ifeq ($(TW_FORCE_CPUINFO_FOR_DEVICE_ID), true) |
| 275 | LOCAL_CFLAGS += -DTW_FORCE_CPUINFO_FOR_DEVICE_ID |
| 276 | endif |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 277 | ifeq ($(TW_NO_EXFAT_FUSE), true) |
| 278 | LOCAL_CFLAGS += -DTW_NO_EXFAT_FUSE |
| 279 | endif |
bigbiff bigbiff | 3ed778a | 2019-03-12 19:28:31 -0400 | [diff] [blame] | 280 | ifeq ($(TW_NO_HAPTICS), true) |
| 281 | LOCAL_CFLAGS += -DTW_NO_HAPTICS |
| 282 | endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 283 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 284 | TW_INCLUDE_CRYPTO := true |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 285 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 286 | ifeq ($(TW_INCLUDE_L_CRYPTO), true) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 287 | TW_INCLUDE_CRYPTO := true |
| 288 | endif |
| 289 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 290 | LOCAL_CFLAGS += -DTW_INCLUDE_CRYPTO -DUSE_FSCRYPT -Wno-macro-redefined |
Ethan Yonker | 98661c1 | 2018-10-17 08:39:28 -0500 | [diff] [blame] | 291 | LOCAL_SHARED_LIBRARIES += libcryptfsfde libgpt_twrp |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 292 | LOCAL_C_INCLUDES += external/boringssl/src/include bootable/recovery/crypto/fscrypt \ |
| 293 | bootable/recovery/crypto |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 294 | TW_INCLUDE_CRYPTO_FBE := true |
| 295 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE |
| 296 | LOCAL_SHARED_LIBRARIES += libtwrpfscrypt android.frameworks.stats@1.0 android.hardware.authsecret@1.0 \ |
| 297 | android.hardware.oemlock@1.0 |
| 298 | LOCAL_CFLAGS += -DTW_INCLUDE_FBE_METADATA_DECRYPT |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 299 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 300 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 301 | TW_INCLUDE_LIBRESETPROP := true |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 302 | LOCAL_CFLAGS += -DTW_CRYPTO_USE_SYSTEM_VOLD |
| 303 | LOCAL_STATIC_LIBRARIES += libvolddecrypt |
| 304 | endif |
| 305 | endif |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 306 | endif |
D. Andrei Măceș | b29a5e2 | 2016-12-22 06:19:44 -0500 | [diff] [blame] | 307 | WITH_CRYPTO_UTILS := \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 308 | $(if $(wildcard system/core/libcrypto_utils/android_pubkey.c),true) |
Anatoly Smaznov | 10c11f6 | 2013-02-12 13:33:40 +0700 | [diff] [blame] | 309 | ifeq ($(TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID), true) |
| 310 | LOCAL_CFLAGS += -DTW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID |
| 311 | endif |
lambdadroid | fc0b16d | 2017-08-04 17:16:53 +0200 | [diff] [blame] | 312 | ifeq ($(TW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID), true) |
| 313 | LOCAL_CFLAGS += -DTW_USE_SERIALNO_PROPERTY_FOR_DEVICE_ID |
| 314 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 315 | ifneq ($(TW_BRIGHTNESS_PATH),) |
| 316 | LOCAL_CFLAGS += -DTW_BRIGHTNESS_PATH=$(TW_BRIGHTNESS_PATH) |
| 317 | endif |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 318 | ifneq ($(TW_SECONDARY_BRIGHTNESS_PATH),) |
| 319 | LOCAL_CFLAGS += -DTW_SECONDARY_BRIGHTNESS_PATH=$(TW_SECONDARY_BRIGHTNESS_PATH) |
| 320 | endif |
Dees_Troy | 2f9117a | 2013-02-17 19:52:09 -0600 | [diff] [blame] | 321 | ifneq ($(TW_MAX_BRIGHTNESS),) |
| 322 | LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS) |
| 323 | endif |
Greg Wallace | 36ade45 | 2015-11-08 13:54:25 -0500 | [diff] [blame] | 324 | ifneq ($(TW_DEFAULT_BRIGHTNESS),) |
| 325 | LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS) |
| 326 | endif |
Dees_Troy | f33b490 | 2013-03-01 00:51:39 +0000 | [diff] [blame] | 327 | ifneq ($(TW_CUSTOM_BATTERY_PATH),) |
| 328 | LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH) |
| 329 | endif |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 330 | ifneq ($(TW_CUSTOM_CPU_TEMP_PATH),) |
| 331 | LOCAL_CFLAGS += -DTW_CUSTOM_CPU_TEMP_PATH=$(TW_CUSTOM_CPU_TEMP_PATH) |
| 332 | endif |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 333 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
| 334 | LOCAL_SHARED_LIBRARIES += libopenaes |
| 335 | else |
| 336 | LOCAL_CFLAGS += -DTW_EXCLUDE_ENCRYPTED_BACKUPS |
| 337 | endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 338 | ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),) |
Michael Bestas | 4a18558 | 2017-04-28 15:45:26 +0300 | [diff] [blame] | 339 | ifneq ($(filter msm8226 msm8x26 msm8610 msm8974 msm8x74 msm8084 msm8x84 apq8084 msm8909 msm8916 msm8992 msm8994 msm8952 msm8996 msm8937 msm8953 msm8998,$(TARGET_BOARD_PLATFORM)),) |
| 340 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 341 | else ifeq ($(TARGET_CPU_VARIANT),krait) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 342 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 343 | endif |
| 344 | else ifeq ($(TARGET_RECOVERY_QCOM_RTC_FIX),true) |
| 345 | LOCAL_CFLAGS += -DQCOM_RTC_FIX |
| 346 | endif |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 347 | ifneq ($(TW_NO_LEGACY_PROPS),) |
| 348 | LOCAL_CFLAGS += -DTW_NO_LEGACY_PROPS |
| 349 | endif |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 350 | ifneq ($(wildcard bionic/libc/include/sys/capability.h),) |
| 351 | LOCAL_CFLAGS += -DHAVE_CAPABILITIES |
| 352 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 353 | ifneq ($(TARGET_RECOVERY_INITRC),) |
| 354 | TW_EXCLUDE_DEFAULT_USB_INIT := true |
| 355 | endif |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 356 | LOCAL_CFLAGS += -DTW_USE_NEW_MINADBD |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 357 | ifneq ($(TW_DEFAULT_LANGUAGE),) |
| 358 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=$(TW_DEFAULT_LANGUAGE) |
| 359 | else |
| 360 | LOCAL_CFLAGS += -DTW_DEFAULT_LANGUAGE=en |
| 361 | endif |
Phoenix591 | e444d11 | 2018-02-03 07:23:54 +0000 | [diff] [blame] | 362 | ifneq ($(TW_CLOCK_OFFSET),) |
| 363 | LOCAL_CFLAGS += -DTW_CLOCK_OFFSET=$(TW_CLOCK_OFFSET) |
| 364 | endif |
Chaosmaster | 461e39f | 2020-02-07 01:48:13 +0100 | [diff] [blame] | 365 | ifneq ($(TW_OVERRIDE_SYSTEM_PROPS),) |
| 366 | TW_INCLUDE_LIBRESETPROP := true |
| 367 | LOCAL_CFLAGS += -DTW_OVERRIDE_SYSTEM_PROPS=$(TW_OVERRIDE_SYSTEM_PROPS) |
| 368 | endif |
| 369 | ifneq ($(TW_INCLUDE_LIBRESETPROP),) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 370 | LOCAL_SHARED_LIBRARIES += libresetprop |
| 371 | LOCAL_C_INCLUDES += external/magisk-prebuilt/include |
| 372 | LOCAL_CFLAGS += -DTW_INCLUDE_LIBRESETPROP |
Chaosmaster | 461e39f | 2020-02-07 01:48:13 +0100 | [diff] [blame] | 373 | endif |
| 374 | |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 375 | TWRP_REQUIRED_MODULES += \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 376 | relink_libraries \ |
| 377 | relink_binaries \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 378 | twrp_ramdisk \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 379 | dump_image \ |
| 380 | erase_image \ |
| 381 | flash_image \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 382 | mke2fs.conf \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 383 | pigz \ |
| 384 | teamwin \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 385 | twrp \ |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 386 | fsck.fat \ |
| 387 | fatlabel \ |
| 388 | mkfs.fat \ |
HashBang | ed974bb | 2016-01-30 14:20:09 -0500 | [diff] [blame] | 389 | permissive.sh \ |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 390 | simg2img_twrp \ |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 391 | libbootloader_message \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 392 | init.recovery.hlthchrg.rc \ |
bigbiff | 973167a | 2020-04-06 15:44:20 -0400 | [diff] [blame] | 393 | init.recovery.service.rc \ |
| 394 | init.recovery.ldconfig.rc \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 395 | awk \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 396 | toybox \ |
| 397 | toolbox \ |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 398 | mkshrc_twrp \ |
Mohammad Afaneh | 3150f1e | 2020-10-16 00:45:03 +0300 | [diff] [blame] | 399 | plat_hwservice_contexts \ |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 400 | vendor_hwservice_contexts \ |
bigbiff | 7ed5106 | 2020-12-02 13:18:20 -0500 | [diff] [blame] | 401 | minadbd \ |
| 402 | twrpbu |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 403 | |
| 404 | ifneq ($(TW_INCLUDE_CRYPTO),) |
| 405 | TWRP_REQUIRED_MODULES += \ |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 406 | hwservicemanager \ |
| 407 | hwservicemanager.rc \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 408 | vndservicemanager \ |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 409 | vndservicemanager.rc \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 410 | vold_prepare_subdirs \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 411 | task_recovery_profiles.json \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 412 | fscryptpolicyget |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 413 | ifneq ($(TW_INCLUDE_CRYPTO_FBE),) |
| 414 | TWRP_REQUIRED_MODULES += \ |
| 415 | plat_service_contexts \ |
| 416 | servicemanager \ |
| 417 | servicemanager.rc |
| 418 | endif |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 419 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 420 | |
bigbiff | 416fe3a | 2020-03-28 13:46:48 -0400 | [diff] [blame] | 421 | ifneq ($(wildcard external/zip/Android.mk),) |
| 422 | TWRP_REQUIRED_MODULES += zip |
| 423 | endif |
| 424 | ifneq ($(wildcard external/unzip/Android.mk),) |
| 425 | TWRP_REQUIRED_MODULES += unzip |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 426 | endif |
Matt Mower | 8405761 | 2017-01-08 13:32:18 -0600 | [diff] [blame] | 427 | |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 428 | ifneq ($(TW_NO_EXFAT), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 429 | TWRP_REQUIRED_MODULES += mkexfatfs fsckexfat |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 430 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 431 | TWRP_REQUIRED_MODULES += exfat-fuse |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 432 | endif |
Matt Mower | 2017279 | 2014-11-14 10:54:03 -0600 | [diff] [blame] | 433 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 434 | ifeq ($(BOARD_HAS_NO_REAL_SDCARD),) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 435 | TWRP_REQUIRED_MODULES += sgdisk |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 436 | endif |
| 437 | ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 438 | TWRP_REQUIRED_MODULES += openaes openaes_license |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 439 | endif |
| 440 | ifeq ($(TW_INCLUDE_DUMLOCK), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 441 | TWRP_REQUIRED_MODULES += \ |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 442 | htcdumlock htcdumlocksys flash_imagesys dump_imagesys libbmlutils.so \ |
| 443 | libflashutils.so libmmcutils.so libmtdutils.so HTCDumlock.apk |
| 444 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 445 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 446 | TWRP_REQUIRED_MODULES += fb2png |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 447 | endif |
| 448 | ifneq ($(TW_OEM_BUILD),true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 449 | TWRP_REQUIRED_MODULES += orscmd |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 450 | endif |
| 451 | ifeq ($(BOARD_USES_BML_OVER_MTD),true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 452 | TWRP_REQUIRED_MODULES += bml_over_mtd |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 453 | endif |
| 454 | ifeq ($(TW_INCLUDE_INJECTTWRP), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 455 | TWRP_REQUIRED_MODULES += injecttwrp |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 456 | endif |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 457 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 458 | TWRP_REQUIRED_MODULES += init.recovery.usb.rc |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 459 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 460 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 461 | TWRP_REQUIRED_MODULES += logcat event-log-tags |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 462 | ifeq ($(TARGET_USES_LOGD), true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 463 | TWRP_REQUIRED_MODULES += logd libsysutils libnl init.recovery.logd.rc |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 464 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 465 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 466 | # Allow devices to specify device-specific recovery dependencies |
| 467 | ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 468 | TWRP_REQUIRED_MODULES += $(TARGET_RECOVERY_DEVICE_MODULES) |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 469 | endif |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 470 | LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\" |
| 471 | LOCAL_CFLAGS += -DTWHTCD_PATH=\"$(TWHTCD_PATH)\" |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 472 | ifeq ($(TW_INCLUDE_NTFS_3G),true) |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 473 | TWRP_REQUIRED_MODULES += \ |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 474 | mount.ntfs \ |
| 475 | fsck.ntfs \ |
| 476 | mkfs.ntfs |
Greg Wallace | b39e6c6 | 2015-12-29 00:55:26 -0500 | [diff] [blame] | 477 | endif |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 478 | ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 479 | TWRP_REQUIRED_MODULES += sload.f2fs \ |
| 480 | libfs_mgr \ |
| 481 | fs_mgr \ |
| 482 | libinit |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 483 | endif |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 484 | |
| 485 | TWRP_REQUIRED_MODULES += file_contexts_text |
| 486 | |
| 487 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 488 | TWRP_REQUIRED_MODULES += recovery-persist recovery-refresh |
Matt Mower | 5829491 | 2015-12-10 11:54:28 -0600 | [diff] [blame] | 489 | endif |
Matt Mower | 031163b | 2014-11-01 15:13:03 -0500 | [diff] [blame] | 490 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 491 | LOCAL_REQUIRED_MODULES += $(TWRP_REQUIRED_MODULES) |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 492 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 493 | include $(BUILD_EXECUTABLE) |
| 494 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 495 | # Symlink for file_contexts |
| 496 | include $(CLEAR_VARS) |
| 497 | |
Captain Throwback | 3184b2f | 2017-03-07 12:07:40 -0500 | [diff] [blame] | 498 | LOCAL_MODULE := file_contexts_text |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 499 | LOCAL_MODULE_TAGS := optional |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 500 | LOCAL_REQUIRED_MODULES := file_contexts.bin |
| 501 | |
Matt Mower | d821c96 | 2017-02-15 12:36:18 -0600 | [diff] [blame] | 502 | LOCAL_POST_INSTALL_CMD := \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 503 | $(hide) cp -f $(PRODUCT_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] | 504 | |
bigbiff | 416fe3a | 2020-03-28 13:46:48 -0400 | [diff] [blame] | 505 | include $(BUILD_PHONY_PACKAGE) |
Dees_Troy | c04dcf7 | 2012-10-02 10:46:37 -0400 | [diff] [blame] | 506 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 507 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 508 | # =============================== |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 509 | include $(CLEAR_VARS) |
| 510 | LOCAL_SRC_FILES := \ |
| 511 | recovery-persist.cpp |
| 512 | LOCAL_MODULE := recovery-persist |
| 513 | LOCAL_SHARED_LIBRARIES := liblog libbase libmetricslogger |
| 514 | LOCAL_STATIC_LIBRARIES := libotautil |
| 515 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include |
| 516 | LOCAL_C_INCLUDES += system/core/libmetricslogger/include \ |
| 517 | system/core/libstats/include |
| 518 | LOCAL_CFLAGS := -Werror |
| 519 | LOCAL_INIT_RC := recovery-persist.rc |
| 520 | include $(BUILD_EXECUTABLE) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 521 | |
Mark Salyzyn | 13aca59 | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 522 | # recovery-refresh (system partition dynamic executable run at init) |
| 523 | # =============================== |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 524 | include $(CLEAR_VARS) |
| 525 | LOCAL_SRC_FILES := \ |
| 526 | recovery-refresh.cpp |
| 527 | LOCAL_MODULE := recovery-refresh |
| 528 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 529 | LOCAL_STATIC_LIBRARIES := libotautil |
| 530 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/otautil/include |
| 531 | LOCAL_CFLAGS := -Werror |
| 532 | LOCAL_INIT_RC := recovery-refresh.rc |
| 533 | include $(BUILD_EXECUTABLE) |
Tao Bao | 42c45e2 | 2018-07-31 09:37:12 -0700 | [diff] [blame] | 534 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 535 | # libmounts (static library) |
| 536 | # =============================== |
| 537 | include $(CLEAR_VARS) |
| 538 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 539 | LOCAL_CFLAGS := \ |
| 540 | -Wall \ |
| 541 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 542 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 543 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 544 | include $(BUILD_STATIC_LIBRARY) |
| 545 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 546 | # librecovery (static library) |
| 547 | # =============================== |
| 548 | include $(CLEAR_VARS) |
| 549 | LOCAL_SRC_FILES := \ |
| 550 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 551 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 552 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 25dbe17 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 553 | |
| 554 | ifeq ($(AB_OTA_UPDATER),true) |
| 555 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 556 | endif |
| 557 | |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 558 | LOCAL_MODULE := librecovery |
| 559 | LOCAL_STATIC_LIBRARIES := \ |
| 560 | libminui \ |
Tao Bao | cfe53c2 | 2017-10-03 14:37:21 -0700 | [diff] [blame] | 561 | libotautil \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 562 | libvintf \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 563 | libcrypto_utils \ |
| 564 | libcrypto \ |
Elliott Hughes | e1bb7a5 | 2017-06-28 08:00:17 -0700 | [diff] [blame] | 565 | libbase \ |
| 566 | libziparchive \ |
Tao Bao | 62e0bc7 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 567 | |
| 568 | include $(BUILD_STATIC_LIBRARY) |
| 569 | |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 570 | # shared libaosprecovery for Apache code |
| 571 | # =============================== |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 572 | include $(CLEAR_VARS) |
| 573 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 574 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 575 | LOCAL_MODULE := libaosprecovery |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 576 | LOCAL_MODULE_TAGS := optional |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 577 | |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 578 | LOCAL_SRC_FILES := install/adb_install.cpp install/asn1_decoder.cpp install/fuse_sdcard_install.cpp \ |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 579 | install/get_args.cpp install/install.cpp install/legacy_property_service.cpp \ |
| 580 | install/package.cpp install/verifier.cpp install/wipe_data.cpp \ |
| 581 | install/set_metadata.cpp install/zipwrap.cpp install/ZipUtil.cpp |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 582 | LOCAL_SHARED_LIBRARIES += libbase libbootloader_message libcrypto libext4_utils \ |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 583 | libfs_mgr libfusesideload libhidl-gen-utils libhidlbase \ |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 584 | liblog libselinux libtinyxml2 libutils libz libziparchive libcutils |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 585 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 586 | LOCAL_SHARED_LIBRARIES += libc++ |
| 587 | LOCAL_CFLAGS := -std=gnu++2a |
| 588 | LOCAL_C_INCLUDES += $(commands_TWRP_local_path)/install/include \ |
| 589 | $(commands_TWRP_local_path)/recovery_ui/include \ |
| 590 | $(commands_TWRP_local_path)/otautil/include \ |
| 591 | $(commands_TWRP_local_path)/minadbd \ |
| 592 | $(commands_TWRP_local_path)/minzip \ |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 593 | $(commands_TWRP_local_path)/twrpinstall/include \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 594 | system/libvintf/include |
| 595 | LOCAL_STATIC_LIBRARIES += libotautil libvintf_recovery libvintf libhidl-gen-utils |
| 596 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | a92d8fb | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 597 | |
Ethan Yonker | 941a899 | 2016-12-05 09:04:30 -0600 | [diff] [blame] | 598 | ifeq ($(AB_OTA_UPDATER),true) |
| 599 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 600 | endif |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 601 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 602 | include $(BUILD_SHARED_LIBRARY) |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 603 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 604 | commands_recovery_local_path := $(LOCAL_PATH) |
Ethan Yonker | ecbd3e8 | 2017-12-14 14:43:59 -0600 | [diff] [blame] | 605 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 606 | include \ |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 607 | $(commands_TWRP_local_path)/updater/Android.mk |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 608 | |
bigbiff | 7ed5106 | 2020-12-02 13:18:20 -0500 | [diff] [blame] | 609 | include $(commands_TWRP_local_path)/mtp/ffs/Android.mk \ |
| 610 | $(commands_TWRP_local_path)/minadbd/Android.mk \ |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 611 | $(commands_TWRP_local_path)/minui/Android.mk |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 612 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 613 | #includes for TWRP |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 614 | include $(commands_TWRP_local_path)/injecttwrp/Android.mk \ |
| 615 | $(commands_TWRP_local_path)/htcdumlock/Android.mk \ |
| 616 | $(commands_TWRP_local_path)/gui/Android.mk \ |
| 617 | $(commands_TWRP_local_path)/mmcutils/Android.mk \ |
| 618 | $(commands_TWRP_local_path)/bmlutils/Android.mk \ |
| 619 | $(commands_TWRP_local_path)/prebuilt/Android.mk \ |
| 620 | $(commands_TWRP_local_path)/mtdutils/Android.mk \ |
| 621 | $(commands_TWRP_local_path)/flashutils/Android.mk \ |
| 622 | $(commands_TWRP_local_path)/pigz/Android.mk \ |
| 623 | $(commands_TWRP_local_path)/libtar/Android.mk \ |
| 624 | $(commands_TWRP_local_path)/libcrecovery/Android.mk \ |
| 625 | $(commands_TWRP_local_path)/libblkid/Android.mk \ |
| 626 | $(commands_TWRP_local_path)/minuitwrp/Android.mk \ |
| 627 | $(commands_TWRP_local_path)/openaes/Android.mk \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 628 | $(commands_TWRP_local_path)/twrpTarMain/Android.mk \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 629 | $(commands_TWRP_local_path)/minzip/Android.mk \ |
| 630 | $(commands_TWRP_local_path)/dosfstools/Android.mk \ |
| 631 | $(commands_TWRP_local_path)/etc/Android.mk \ |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 632 | $(commands_TWRP_local_path)/simg2img/Android.mk \ |
| 633 | $(commands_TWRP_local_path)/adbbu/Android.mk \ |
| 634 | $(commands_TWRP_local_path)/libpixelflinger/Android.mk \ |
| 635 | $(commands_TWRP_local_path)/twrpDigest/Android.mk \ |
| 636 | $(commands_TWRP_local_path)/attr/Android.mk |
Ethan Yonker | bcc502c | 2014-11-10 11:22:10 -0600 | [diff] [blame] | 637 | |
mauronofrio | 6d3bf89 | 2019-10-26 19:47:55 +0200 | [diff] [blame] | 638 | ifneq ($(TW_OZIP_DECRYPT_KEY),) |
| 639 | TWRP_REQUIRED_MODULES += ozip_decrypt |
| 640 | include $(commands_TWRP_local_path)/ozip_decrypt/Android.mk |
| 641 | endif |
| 642 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 643 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
Ethan Yonker | 98661c1 | 2018-10-17 08:39:28 -0500 | [diff] [blame] | 644 | include $(commands_TWRP_local_path)/crypto/fde/Android.mk |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 645 | include $(commands_TWRP_local_path)/crypto/scrypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 646 | ifeq ($(TW_INCLUDE_CRYPTO_FBE), true) |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 647 | include $(commands_TWRP_local_path)/crypto/fscrypt/Android.mk |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 648 | endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 649 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) |
| 650 | ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),false) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 651 | include $(commands_TWRP_local_path)/crypto/vold_decrypt/Android.mk |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 652 | endif |
| 653 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 654 | include $(commands_TWRP_local_path)/gpt/Android.mk |
Ethan Yonker | 4eca40d | 2014-11-11 14:52:28 -0600 | [diff] [blame] | 655 | endif |
Vojtech Bocek | 7cc278b | 2013-02-24 01:40:19 +0100 | [diff] [blame] | 656 | ifeq ($(BUILD_ID), GINGERBREAD) |
| 657 | TW_NO_EXFAT := true |
| 658 | endif |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 659 | ifneq ($(TW_NO_EXFAT), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 660 | include $(commands_TWRP_local_path)/exfat/mkfs/Android.mk \ |
| 661 | $(commands_TWRP_local_path)/exfat/fsck/Android.mk \ |
| 662 | $(commands_TWRP_local_path)/fuse/Android.mk \ |
| 663 | $(commands_TWRP_local_path)/exfat/libexfat/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 664 | ifneq ($(TW_NO_EXFAT_FUSE), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 665 | include $(commands_TWRP_local_path)/exfat/fuse/Android.mk |
Ethan Yonker | 34741d9 | 2016-02-06 13:22:45 -0600 | [diff] [blame] | 666 | endif |
Captain Throwback | 6a1acf2 | 2014-09-18 12:46:35 -0400 | [diff] [blame] | 667 | endif |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 668 | ifneq ($(TW_OEM_BUILD),true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 669 | include $(commands_TWRP_local_path)/orscmd/Android.mk |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 670 | endif |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 671 | |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 672 | # FB2PNG |
| 673 | ifeq ($(TW_INCLUDE_FB2PNG), true) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 674 | include $(commands_TWRP_local_path)/fb2png/Android.mk |
Talustus | 3019a91 | 2013-04-06 11:50:07 +0200 | [diff] [blame] | 675 | endif |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 676 | |
Matt Mower | 55c75ca | 2014-08-31 11:30:15 -0500 | [diff] [blame] | 677 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 678 | |
| 679 | commands_TWRP_local_path := |