diff options
author | Praneeth Bajjuri | 2017-01-17 18:28:17 -0600 |
---|---|---|
committer | Praneeth Bajjuri | 2017-01-17 18:57:43 -0600 |
commit | 6442193dcf79f978a5c36954197633ef768bd8b6 (patch) | |
tree | 47abd699c0b8fabc6e3ab93662e3370aea84f27b /audio | |
parent | 2b7c14f0d312cdc3baa92b00bc9354aeac6208d9 (diff) | |
download | device-ti-am57xevm-6442193dcf79f978a5c36954197633ef768bd8b6.tar.gz device-ti-am57xevm-6442193dcf79f978a5c36954197633ef768bd8b6.tar.xz device-ti-am57xevm-6442193dcf79f978a5c36954197633ef768bd8b6.zip |
Set product files and packages for APPE based audio
The APPE HAL and the previous primary HAL cannot coexist, so the
APPE HAL must become the primary HAL when the APPE_AUDIO feature
is enabled.
Similarly, some product files are specific to APPE and replace those
used by the previous primary and JAMR3 HALs.
Signed-off-by: Misael Lopez Cruz <misael.lopez@ti.com>
[move to am57xevm but do not enable APPE/JAMR changes as they might
be not applicable on this EVM]
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
Change-Id: I2911e58fcefb4c8dd5e8bbda1ff01f816aa57f31
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/audio/Android.mk b/audio/Android.mk index 9e14b16..4b34495 100644 --- a/audio/Android.mk +++ b/audio/Android.mk | |||
@@ -13,4 +13,10 @@ | |||
13 | # limitations under the License. | 13 | # limitations under the License. |
14 | 14 | ||
15 | LOCAL_PATH := $(call my-dir) | 15 | LOCAL_PATH := $(call my-dir) |
16 | |||
17 | |||
18 | ifeq ($(APPE_AUDIO),true) | ||
19 | include $(LOCAL_PATH)/hdmi/Android.mk | ||
20 | else | ||
16 | include $(call all-makefiles-under,$(LOCAL_PATH)) | 21 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
22 | endif | ||