Merge "Disable recovery in PDK builds" into klp-volantis-dev

This commit is contained in:
Colin Cross 2013-12-03 17:44:07 +00:00 committed by Android (Google) Code Review
commit 9781049c41
1 changed files with 5 additions and 0 deletions

View File

@ -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)))