diff options
author | Dan Murphy <dmurphy@ti.com> | 2012-05-01 20:49:13 +0200 |
---|---|---|
committer | KalimochoAz <calimochoazucarado@gmail.com> | 2012-05-01 20:49:50 +0200 |
commit | 3fa94b46cae3746795f58fd64a1f06e58df7a1a1 (patch) | |
tree | 89bc6d9b30d02a61fb41bf19196507ed125779b3 | |
parent | 8f1496f742f27fc1fd20852710c9d7146e5fae16 (diff) | |
download | device_samsung_tuna-3fa94b46cae3746795f58fd64a1f06e58df7a1a1.tar.gz device_samsung_tuna-3fa94b46cae3746795f58fd64a1f06e58df7a1a1.tar.bz2 device_samsung_tuna-3fa94b46cae3746795f58fd64a1f06e58df7a1a1.zip |
[Tuna] Add product specific definition to HDCP symlink
Add product specific definition to the HDCP symlink creation.
Without this protection performing a make after lunch for other products
will force the inheritance of this symlink into the build.
When creating the ota and update packages for other targets these
symlinks are not created.
This will cause other products to fail HDCP symlink association since
the symlink was not created for the target product.
Change-Id: Id2125840269d70de250231c56eabe4a3f3a97886
Signed-off-by: Dan Murphy <dmurphy@ti.com>
-rw-r--r-- | Android.mk | 3 | ||||
-rw-r--r-- | BoardConfig.mk | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -22,6 +22,7 @@ LOCAL_PATH := $(call my-dir) +ifeq ($(BOARD_CREATE_TUNA_HDCP_KEYS_SYMLINK), true) include $(CLEAR_VARS) LOCAL_MODULE := tuna_hdcp_keys @@ -44,3 +45,5 @@ $(LOCAL_BUILT_MODULE): $(hide) touch $@ include $(call all-makefiles-under,$(LOCAL_PATH)) + +endif
\ No newline at end of file diff --git a/BoardConfig.mk b/BoardConfig.mk index 25cf0fc..a306226 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -44,6 +44,7 @@ TARGET_BOOTLOADER_BOARD_NAME := tuna TARGET_BOARD_INFO_FILE := device/samsung/tuna/board-info.txt BOARD_EGL_CFG := device/samsung/tuna/egl.cfg +BOARD_CREATE_TUNA_HDCP_KEYS_SYMLINK := true #BOARD_USES_HGL := true #BOARD_USES_OVERLAY := true |