From be069e6d933a9f8d8db191f4f4d94a48c6ade010 Mon Sep 17 00:00:00 2001 From: Dan Murphy Date: Mon, 16 Jan 2012 09:44:03 -0600 Subject: [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 --- BoardConfig.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'BoardConfig.mk') diff --git a/BoardConfig.mk b/BoardConfig.mk index b1a43ac..3ac5886 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -38,6 +38,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 -- cgit v1.1 From 20cb7d0396aaf69a9abf10d1a5913db36b66a65d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Queru Date: Fri, 10 Aug 2012 09:48:38 -0700 Subject: Fix build - Add TARGET_ARCH := arm Change-Id: I6e4b534b18be8fea3b7fff1bcdc7931399456db4 --- BoardConfig.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'BoardConfig.mk') diff --git a/BoardConfig.mk b/BoardConfig.mk index 7fa3d44..6df76b3 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -24,6 +24,7 @@ USE_CAMERA_STUB := true TARGET_CPU_ABI := armeabi-v7a TARGET_CPU_ABI2 := armeabi TARGET_CPU_SMP := true +TARGET_ARCH := arm TARGET_ARCH_VARIANT := armv7-a-neon ARCH_ARM_HAVE_TLS_REGISTER := true -- cgit v1.1 From bd6aec2debc5aa267a72412d540b7419bc40f9c7 Mon Sep 17 00:00:00 2001 From: Wink Saville Date: Mon, 20 Aug 2012 16:28:38 -0700 Subject: Add support for per device bluetooth configuration. Bug: 6837125 Change-Id: I3c05e57703c02bb9981bd4628347cc7e3b060574 --- BoardConfig.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'BoardConfig.mk') diff --git a/BoardConfig.mk b/BoardConfig.mk index 6df76b3..b07c668 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -21,6 +21,10 @@ USE_CAMERA_STUB := true # Use the non-open-source parts, if they're present -include vendor/samsung/tuna/BoardConfigVendor.mk +# Default values, if not overridden else where. +TARGET_BOARD_INFO_FILE ?= device/samsung/tuna/board-info.txt +BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR ?= device/samsung/tuna/bluetooth + TARGET_CPU_ABI := armeabi-v7a TARGET_CPU_ABI2 := armeabi TARGET_CPU_SMP := true @@ -36,7 +40,6 @@ BOARD_KERNEL_BASE := 0x80000000 TARGET_NO_RADIOIMAGE := true TARGET_BOARD_PLATFORM := omap4 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 -- cgit v1.1