diff options
author | Dan Murphy <dmurphy@ti.com> | 2012-05-01 18:12:37 -0500 |
---|---|---|
committer | Daniel Levin <dendy@ti.com> | 2012-11-20 18:29:56 +0200 |
commit | 851553ca5bda0e1628b5e76c39db29e500856cbf (patch) | |
tree | 55a83fd9b0ac468233ac7bb9effea521e684063b /security/tf_daemon | |
parent | 313582ef319353f3436543f0e9b9235fa5fb7856 (diff) | |
download | hardware_ti_omap4-851553ca5bda0e1628b5e76c39db29e500856cbf.zip hardware_ti_omap4-851553ca5bda0e1628b5e76c39db29e500856cbf.tar.gz hardware_ti_omap4-851553ca5bda0e1628b5e76c39db29e500856cbf.tar.bz2 |
OMAP5: Modify security Android.mk to enable for OMAP4&5 only
Modifying the Android.mk files in the security area to ensure that
they are only run for OMAP4/5. They are not used by OMAP3 and this
patch ensures that they will not be compiled for customer boards.
Change-Id: I245f77280de2ba079104b36649f314b682f0f5bb
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Signed-off-by: Andrii Beregovenko <a.beregovenko@ti.com>
Signed-off-by: Daniel Levin <dendy@ti.com>
Diffstat (limited to 'security/tf_daemon')
-rw-r--r-- | security/tf_daemon/Android.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/tf_daemon/Android.mk b/security/tf_daemon/Android.mk index eccba3d..02ff35e 100644 --- a/security/tf_daemon/Android.mk +++ b/security/tf_daemon/Android.mk @@ -1,4 +1,8 @@ -ifeq ($(TARGET_BOARD_PLATFORM),omap4) +# Only applicable for OMAP4 and OMAP5 boards. +# First eliminate OMAP3 and then ensure that this is not used +# for customer boards +ifneq ($(TARGET_BOARD_PLATFORM),omap3) +ifeq ($(findstring omap, $(TARGET_BOARD_PLATFORM)),omap) LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) @@ -29,3 +33,4 @@ LOCAL_MODULE_TAGS := optional include $(BUILD_EXECUTABLE) endif +endif |