• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2007 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# BoardConfig.mk
16#
17# Product-specific compile-time definitions.
18#
19
20TARGET_CPU_ABI := armeabi-v7a
21TARGET_CPU_ABI2 := armeabi
22
23BOARD_HAVE_BLUETOOTH := true
24BOARD_HAVE_BLUETOOTH_BCM := true
25
26TARGET_NO_BOOTLOADER := true
27
28TARGET_NO_KERNEL := false
29
30TARGET_NO_RADIOIMAGE := true
31TARGET_PROVIDES_INIT_TARGET_RC := true
32TARGET_BOARD_PLATFORM := s5pc110
33TARGET_BOOTLOADER_BOARD_NAME := herring
34
35TARGET_SEC_INTERNAL_STORAGE := false
36
37# Enable NEON feature
38TARGET_ARCH_VARIANT := armv7-a-neon
39ARCH_ARM_HAVE_TLS_REGISTER := true
40
41USE_CAMERA_STUB := false
42ifeq ($(USE_CAMERA_STUB),false)
43BOARD_CAMERA_LIBRARIES := libcamera
44endif
45
46BOARD_USES_HGL := true
47BOARD_USES_OVERLAY := true
48
49DEFAULT_FB_NUM := 2
50
51BOARD_NAND_PAGE_SIZE := 4096 -s 128
52
53BOARD_KERNEL_BASE := 0x30000000
54BOARD_KERNEL_PAGESIZE := 4096
55BOARD_KERNEL_CMDLINE := console=ttyFIQ0 no_console_suspend
56
57TARGET_RECOVERY_UI_LIB := librecovery_ui_crespo
58TARGET_RELEASETOOLS_EXTENSIONS := device/samsung/crespo
59
60TARGET_USERIMAGES_USE_EXT4 := true
61BOARD_SYSTEMIMAGE_PARTITION_SIZE := 536870912
62BOARD_USERDATAIMAGE_PARTITION_SIZE := 1073741824
63BOARD_FLASH_BLOCK_SIZE := 4096
64
65# Connectivity - Wi-Fi
66WPA_SUPPLICANT_VERSION := VER_0_6_X
67BOARD_WPA_SUPPLICANT_DRIVER := WEXT
68BOARD_WLAN_DEVICE := bcm4329
69WIFI_DRIVER_MODULE_PATH     := "/system/modules/bcm4329.ko"
70WIFI_DRIVER_FW_STA_PATH     := "/vendor/firmware/fw_bcm4329.bin"
71WIFI_DRIVER_FW_AP_PATH      := "/vendor/firmware/fw_bcm4329_apsta.bin"
72WIFI_DRIVER_MODULE_NAME     :=  "bcm4329"
73WIFI_DRIVER_MODULE_ARG      :=  "firmware_path=/vendor/firmware/fw_bcm4329.bin nvram_path=/vendor/firmware/nvram_net.txt"
74
75