diff options
author | Captain Throwback <captainthrowback@hotmail.com> | 2016-01-19 23:30:20 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2016-02-04 15:09:58 +0100 |
commit | 1f12775707350d805a520dc0dc8c68b77ce5d9ef (patch) | |
tree | 88fa7341aab6d0192ca1c2ba73c63918a1cea5a5 /Android.mk | |
parent | allow flashing sparse images (diff) | |
download | android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar.gz android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar.bz2 android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar.lz android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar.xz android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.tar.zst android_bootable_recovery-1f12775707350d805a520dc0dc8c68b77ce5d9ef.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index 0a5692c85..0660a46dc 100644 --- a/Android.mk +++ b/Android.mk @@ -425,6 +425,12 @@ endif ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) LOCAL_ADDITIONAL_DEPENDENCIES += init.recovery.usb.rc endif +ifeq ($(TARGET_USES_LOGD), true) + LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc +endif +ifeq ($(TWRP_INCLUDE_LOGCAT), true) + LOCAL_ADDITIONAL_DEPENDENCIES += logcat +endif # Allow devices to specify device-specific recovery dependencies ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_RECOVERY_DEVICE_MODULES) |