From f117962eb25bde75e981c3bff91ba708a55df65e Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Thu, 25 Aug 2016 15:32:21 -0500 Subject: Make it backwards compatible with 4.4 Change-Id: I668604cddc8e8afbf78709f3f872bea4e9f4aa06 --- toolbox/Android.mk | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'toolbox/Android.mk') diff --git a/toolbox/Android.mk b/toolbox/Android.mk index c721bbd41..4c3e433c2 100644 --- a/toolbox/Android.mk +++ b/toolbox/Android.mk @@ -2,9 +2,13 @@ TWRP_TOOLBOX_PATH := $(call my-dir) LOCAL_PATH := system/core/toolbox include $(CLEAR_VARS) -OUR_TOOLS := \ - start \ - stop \ +OUR_TOOLS := + +ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) + OUR_TOOLS := \ + start \ + stop +endif ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) OUR_TOOLS += \ @@ -227,6 +231,13 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 22; echo $$?),0) LOCAL_SRC_FILES += ../../../$(TWRP_TOOLBOX_PATH)/ls.c endif endif +ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 23; echo $$?),0) + # Rule for making start and stop in N trees + LOCAL_SRC_FILES += \ + ../../../$(TWRP_TOOLBOX_PATH)/start.c \ + ../../../$(TWRP_TOOLBOX_PATH)/stop.c + OUR_TOOLS += start stop +endif LOCAL_MODULE := toolbox_recovery LOCAL_MODULE_STEM := toolbox -- cgit v1.2.3