BoardConfig.mk revision 27a026c802ec10a71cca3530270e2f0433de3569
1#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# BoardConfig.mk
17#
18# Product-specific compile-time definitions.
19#
20
21# The generic product target doesn't have any hardware-specific pieces.
22TARGET_NO_BOOTLOADER := true
23TARGET_NO_KERNEL := true
24
25TARGET_ARCH := mips
26ifeq (,$(TARGET_ARCH_VARIANT))
27TARGET_ARCH_VARIANT := mips32r2-fp
28endif
29TARGET_CPU_ABI  := mips
30
31HAVE_HTC_AUDIO_DRIVER := true
32BOARD_USES_GENERIC_AUDIO := true
33
34# no hardware camera
35USE_CAMERA_STUB := true
36
37# Enable dex-preoptimization to speed up the first boot sequence
38# of an SDK AVD. Note that this operation only works on Linux for now
39ifeq ($(HOST_OS),linux)
40  ifeq ($(WITH_DEXPREOPT),)
41    WITH_DEXPREOPT := true
42  endif
43endif
44
45# Build OpenGLES emulation guest and host libraries
46BUILD_EMULATOR_OPENGL := true
47
48# Build and enable the OpenGL ES View renderer. When running on the emulator,
49# the GLES renderer disables itself if host GL acceleration isn't available.
50USE_OPENGL_RENDERER := true
51
52TARGET_USERIMAGES_USE_EXT4 := true
53BOARD_SYSTEMIMAGE_PARTITION_SIZE := 681574400
54BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
55BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
56BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
57BOARD_FLASH_BLOCK_SIZE := 512
58TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
59
60BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
61BOARD_SEPOLICY_UNION += \
62        adbd.te \
63        bootanim.te \
64        device.te \
65        domain.te \
66        file.te \
67        file_contexts \
68        mediaserver.te \
69        qemud.te \
70        rild.te \
71        shell.te \
72        surfaceflinger.te \
73        system_server.te
74