From 2e9d15d0b647058fed7673fe071953496c6089ca Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Wed, 23 Oct 2013 08:00:42 -0700 Subject: [PATCH] Disable recovery in PDK builds Change-Id: Ic6ee44cef37104c8d7facc28dfe45d0ef832ebd0 --- core/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/Makefile b/core/Makefile index 2a5c574ee..ddd0b8246 100644 --- a/core/Makefile +++ b/core/Makefile @@ -623,6 +623,11 @@ endef # ----------------------------------------------------------------- # Recovery image +# Recovery is disabled in PDK builds +ifeq ($(TARGET_BUILD_PDK),true) +TARGET_NO_RECOVERY := true +endif + # If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY))) -- 2.11.0