summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPooja Kumari <kumarip@codeaurora.org>2019-07-11 12:17:07 +0530
committerPooja Kumari <kumarip@codeaurora.org>2019-07-11 12:21:46 +0530
commitb393a545590b1bc6386988fc4375250cfe2f46dd (patch)
tree762def77eb55b53d3df4d9f99341fdf28e710d49
parente90b6f4aa67cd2f2b3ac652c5449d8d2d826f27d (diff)
downloadipacfg-mgr-b393a545590b1bc6386988fc4375250cfe2f46dd.tar.gz
ipacm: Add Low RAM flag before compilation
Add Low RAM flag check to avoid ipacm compilation if the flag is set as true. Change-Id: I0dd08de31d7378b4a715b28757a7c4ee446eca55
-rw-r--r--ipacm/src/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipacm/src/Android.mk b/ipacm/src/Android.mk
index 95635c2..9cbe1e2 100644
--- a/ipacm/src/Android.mk
+++ b/ipacm/src/Android.mk
@@ -1,3 +1,4 @@
+ifneq ($(TARGET_HAS_LOW_RAM),true)
BOARD_PLATFORM_LIST := msm8909
BOARD_PLATFORM_LIST += msm8916
BOARD_PLATFORM_LIST += msm8917
@@ -121,3 +122,4 @@ include $(BUILD_PREBUILT)
endif # $(TARGET_ARCH)
endif
endif
+endif