-
Notifications
You must be signed in to change notification settings - Fork 4
/
BoardConfigCommon.mk
58 lines (48 loc) · 1.66 KB
/
BoardConfigCommon.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright (C) 2015 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
OMAP4_NEXT_FOLDER := hardware/ti/omap4
# Processor
TARGET_CPU_ABI := armeabi-v7a
TARGET_CPU_VARIANT := cortex-a9
TARGET_CPU_ABI2 := armeabi
TARGET_CPU_SMP := true
TARGET_ARCH := arm
TARGET_BOARD_PLATFORM := omap4
TARGET_BOARD_PLATFORM_VARIANT := omap4-next
TARGET_ARCH_VARIANT := armv7-a-neon
# Graphics
USE_OPENGL_RENDERER := true
# Global include changes
#TARGET_SPECIFIC_HEADER_PATH += $(OMAP4_NEXT_FOLDER)/include
# TI Enhancement Settings
OMAP_ENHANCEMENT := true
OMAP_ENHANCEMENT_MULTIGPU := true
BOARD_USE_TI_ENHANCED_DOMX := true
BOARD_USE_TI_DUCATI_H264_PROFILE := true
BOARD_USE_TI_DOMX_LOW_SECURE_HEAP := true
ENHANCED_DOMX := true
TARGET_SPECIFIC_HEADER_PATH += $(OMAP4_NEXT_FOLDER)/domx/omx_core/inc
BOARD_USE_TI_CUSTOM_DOMX := true
DOMX_PATH := $(OMAP4_NEXT_FOLDER)/domx
# Bootanimation
TARGET_BOOTANIMATION_PRELOAD := false
TARGET_BOOTANIMATION_TEXTURE_CACHE := false
TARGET_BOOTANIMATION_USE_RGB565 := true
# seccomp
BOARD_SECCOMP_POLICY += \
$(OMAP4_NEXT_FOLDER)/seccomp
# SELinux
include $(OMAP4_NEXT_FOLDER)/sepolicy/sepolicy.mk
# Misc
BOARD_USES_SECURE_SERVICES := true