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 | |
Tao Bao | 673bb6f | 2018-08-03 20:56:25 -0700 | [diff] [blame] | 17 | # Needed by build/make/core/Makefile. Must be consistent with the value in Android.bp. |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 18 | RECOVERY_API_VERSION := 3 |
| 19 | RECOVERY_FSTAB_VERSION := 2 |
| 20 | |
Hongguang Chen | 0426727 | 2020-04-21 20:58:04 -0700 | [diff] [blame] | 21 | # TARGET_RECOVERY_UI_LIB should be one of librecovery_ui_{default,wear,vr,ethernet} or a |
| 22 | # device-specific module that defines make_device() and the exact RecoveryUI class for the |
| 23 | # target. It defaults to librecovery_ui_default, which uses ScreenRecoveryUI. |
Tao Bao | f7e8012 | 2018-03-23 22:01:43 -0700 | [diff] [blame] | 24 | TARGET_RECOVERY_UI_LIB ?= librecovery_ui_default |
| 25 | |
Tao Bao | 42c45e2 | 2018-07-31 09:37:12 -0700 | [diff] [blame] | 26 | # librecovery_ui_ext (shared library) |
| 27 | # =================================== |
| 28 | include $(CLEAR_VARS) |
| 29 | |
| 30 | LOCAL_MODULE := librecovery_ui_ext |
Bob Badour | 29be3f6 | 2021-02-12 18:00:57 -0800 | [diff] [blame] | 31 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT SPDX-license-identifier-OFL |
| 32 | LOCAL_LICENSE_CONDITIONS := by_exception_only notice |
| 33 | LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE |
Tao Bao | 42c45e2 | 2018-07-31 09:37:12 -0700 | [diff] [blame] | 34 | |
| 35 | # LOCAL_MODULE_PATH for shared libraries is unsupported in multiarch builds. |
| 36 | LOCAL_MULTILIB := first |
| 37 | |
| 38 | ifeq ($(TARGET_IS_64_BIT),true) |
| 39 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/lib64 |
| 40 | else |
| 41 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/lib |
| 42 | endif |
| 43 | |
| 44 | LOCAL_WHOLE_STATIC_LIBRARIES := \ |
| 45 | $(TARGET_RECOVERY_UI_LIB) |
| 46 | |
| 47 | LOCAL_SHARED_LIBRARIES := \ |
Inseob Kim | 5d4dea1 | 2021-06-30 15:08:16 +0900 | [diff] [blame] | 48 | libbase.recovery \ |
| 49 | liblog.recovery \ |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 50 | librecovery_ui.recovery |
Tao Bao | 42c45e2 | 2018-07-31 09:37:12 -0700 | [diff] [blame] | 51 | |
| 52 | include $(BUILD_SHARED_LIBRARY) |
| 53 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 54 | # recovery_deps: A phony target that's depended on by `recovery`, which |
| 55 | # builds additional modules conditionally based on Makefile variables. |
| 56 | # ====================================================================== |
Tao Bao | fd0ace8 | 2017-10-11 20:25:36 -0700 | [diff] [blame] | 57 | include $(CLEAR_VARS) |
| 58 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 59 | LOCAL_MODULE := recovery_deps |
Bob Badour | 29be3f6 | 2021-02-12 18:00:57 -0800 | [diff] [blame] | 60 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT SPDX-license-identifier-OFL |
| 61 | LOCAL_LICENSE_CONDITIONS := by_exception_only notice |
| 62 | LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 63 | |
| 64 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 65 | LOCAL_REQUIRED_MODULES += \ |
Tao Bao | c674dfb | 2018-12-20 14:25:15 -0800 | [diff] [blame] | 66 | make_f2fs.recovery \ |
| 67 | sload_f2fs.recovery |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 68 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 69 | |
Tianjie Xu | 2b1a464 | 2018-09-06 11:58:55 -0700 | [diff] [blame] | 70 | # On A/B devices recovery-persist reads the recovery related file from the persist storage and |
| 71 | # copies them into /data/misc/recovery. Then, for both A/B and non-A/B devices, recovery-persist |
| 72 | # parses the last_install file and reports the embedded update metrics. Also, the last_install file |
| 73 | # will be deteleted after the report. |
| 74 | LOCAL_REQUIRED_MODULES += recovery-persist |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 75 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
Tianjie Xu | 2b1a464 | 2018-09-06 11:58:55 -0700 | [diff] [blame] | 76 | LOCAL_REQUIRED_MODULES += recovery-refresh |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 77 | endif |
| 78 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 79 | include $(BUILD_PHONY_PACKAGE) |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 80 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 81 | include \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 82 | $(LOCAL_PATH)/updater/Android.mk \ |