Home | History | Annotate | Download | only in crespo
      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 
     20 TARGET_CPU_ABI := armeabi-v7a
     21 TARGET_CPU_ABI2 := armeabi
     22 
     23 BOARD_HAVE_BLUETOOTH := true
     24 BOARD_HAVE_BLUETOOTH_BCM := true
     25 
     26 TARGET_NO_BOOTLOADER := true
     27 
     28 TARGET_NO_KERNEL := false
     29 
     30 TARGET_NO_RADIOIMAGE := true
     31 TARGET_PROVIDES_INIT_TARGET_RC := true
     32 TARGET_BOARD_PLATFORM := s5pc110
     33 TARGET_BOOTLOADER_BOARD_NAME := herring
     34 
     35 TARGET_SEC_INTERNAL_STORAGE := false
     36 
     37 # Enable NEON feature
     38 TARGET_ARCH_VARIANT := armv7-a-neon
     39 ARCH_ARM_HAVE_TLS_REGISTER := true
     40 
     41 # USE_CAMERA_STUB := true
     42 # ifeq ($(USE_CAMERA_STUB),false)
     43 # BOARD_CAMERA_LIBRARIES := libcamera
     44 # endif
     45 
     46 BOARD_USES_HGL := true
     47 ##BOARD_USES_OVERLAY := true
     48 BOARD_USES_GENERIC_AUDIO := false
     49 
     50 DEFAULT_FB_NUM := 2
     51 
     52 BOARD_NAND_PAGE_SIZE := 4096
     53 BOARD_NAND_SPARE_SIZE := 128
     54 
     55 BOARD_KERNEL_BASE := 0x30000000
     56 BOARD_KERNEL_PAGESIZE := 4096
     57 BOARD_KERNEL_CMDLINE := console=ttyFIQ0 no_console_suspend
     58 
     59 TARGET_RECOVERY_PIXEL_FORMAT := "BGRA_8888"
     60 TARGET_RECOVERY_UI_LIB := librecovery_ui_crespo
     61 TARGET_RELEASETOOLS_EXTENSIONS := device/samsung/crespo
     62 
     63 TARGET_USERIMAGES_USE_EXT4 := true
     64 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 536870912
     65 BOARD_USERDATAIMAGE_PARTITION_SIZE := 1073741824
     66 BOARD_FLASH_BLOCK_SIZE := 4096
     67 
     68 # Connectivity - Wi-Fi
     69 WPA_SUPPLICANT_VERSION := VER_0_8_X
     70 BOARD_WPA_SUPPLICANT_DRIVER := WEXT
     71 BOARD_WLAN_DEVICE := bcm4329
     72 BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_wext
     73 WIFI_DRIVER_MODULE_PATH     := "/system/modules/bcm4329.ko"
     74 WIFI_DRIVER_FW_PATH_STA     := "/vendor/firmware/fw_bcm4329.bin"
     75 WIFI_DRIVER_FW_PATH_AP      := "/vendor/firmware/fw_bcm4329_apsta.bin"
     76 WIFI_DRIVER_MODULE_NAME     :=  "bcm4329"
     77 WIFI_DRIVER_MODULE_ARG      :=  "iface_name=wlan0 firmware_path=/vendor/firmware/fw_bcm4329.bin nvram_path=/vendor/firmware/nvram_net.txt"
     78 
     79 USE_OPENGL_RENDERER	:= true
     80