From e5a288c96b33b56c15ba445daf0303d4215d424a Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Mon, 15 Feb 2016 09:23:57 -0600 Subject: Fix up logd make file rules logd, the init.recovery.logd.rc, and other related files were included by default if your device configs specified TARGET_USES_LOGD := true which would be the case for any device that has a full ROM tree instead of a minimal TWRP tree. Change-Id: Ia1e55703631f0f22beab2f4d4479599b88539e1a --- etc/Android.mk | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'etc') diff --git a/etc/Android.mk b/etc/Android.mk index ac6f813bb..5e612b63e 100644 --- a/etc/Android.mk +++ b/etc/Android.mk @@ -31,19 +31,20 @@ include $(BUILD_PREBUILT) endif -ifeq ($(TARGET_USES_LOGD), true) - -include $(CLEAR_VARS) -LOCAL_MODULE := init.recovery.logd.rc -LOCAL_MODULE_TAGS := eng -LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES - -# Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc -# during ramdisk creation and only allows init.recovery.*.rc files to be copied -# from TARGET_ROOT_OUT thereafter -LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) - -LOCAL_SRC_FILES := $(LOCAL_MODULE) -include $(BUILD_PREBUILT) - +ifeq ($(TWRP_INCLUDE_LOGCAT), true) + ifeq ($(TARGET_USES_LOGD), true) + + include $(CLEAR_VARS) + LOCAL_MODULE := init.recovery.logd.rc + LOCAL_MODULE_TAGS := eng + LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES + + # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc + # during ramdisk creation and only allows init.recovery.*.rc files to be copied + # from TARGET_ROOT_OUT thereafter + LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) + + LOCAL_SRC_FILES := $(LOCAL_MODULE) + include $(BUILD_PREBUILT) + endif endif -- cgit v1.2.3