summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuK1337 <priv.luk@gmail.com>2021-01-05 13:36:22 +0100
committeralk3pInjection <webmaster@raspii.tech>2023-06-12 20:26:53 +0800
commit86f0ae9017d5f8192d9708ac1cf2323102e43fa2 (patch)
tree4c415a8ac0d28929528bf4e310f3ff9ce702509b
parent91de008f8a740c47d01f7db59d2116ae666b8af5 (diff)
Drop dependency on librecovery_updater
* Not needed. Change-Id: Ie255f645eafc6f178b8a333059e83ec3d5dbe622
-rw-r--r--1.1/libboot_control_qti/Android.bp1
-rw-r--r--Android.mk4
2 files changed, 2 insertions, 3 deletions
diff --git a/1.1/libboot_control_qti/Android.bp b/1.1/libboot_control_qti/Android.bp
index 29729a7..b2c6680 100644
--- a/1.1/libboot_control_qti/Android.bp
+++ b/1.1/libboot_control_qti/Android.bp
@@ -4,7 +4,6 @@ cc_library {
recovery_available: true,
shared_libs: [
"android.hardware.boot@1.1",
- "librecovery_updater",
"libbase",
"libcutils",
"liblog",
diff --git a/Android.mk b/Android.mk
index 215706c..191be1a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -2,7 +2,7 @@ ifeq ($(AB_OTA_UPDATER),true)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_CFLAGS += -Wall -Werror
-LOCAL_SHARED_LIBRARIES += liblog librecovery_updater_msm libcutils
+LOCAL_SHARED_LIBRARIES += liblog libcutils
LOCAL_HEADER_LIBRARIES += libhardware_headers
LOCAL_SRC_FILES := boot_control.cpp
LOCAL_MODULE_RELATIVE_PATH := hw
@@ -13,7 +13,7 @@ include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_CFLAGS += -Wall -Werror
-LOCAL_SHARED_LIBRARIES += liblog librecovery_updater_msm libcutils
+LOCAL_SHARED_LIBRARIES += liblog libcutils
LOCAL_HEADER_LIBRARIES := libhardware_headers
LOCAL_SRC_FILES := boot_control.cpp
LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM)