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 17 # These two variables are set first, so they can be overridden 18 # by BoardConfigVendor.mk 19 BOARD_USES_GENERIC_AUDIO := true 20 21 # Default values, possibly overridden by BoardConfigVendor.mk 22 TARGET_BOARD_INFO_FILE := device/samsung/manta/board-info.txt 23 BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/samsung/manta/bluetooth 24 25 # Use the non-open-source parts, if they're present 26 -include vendor/samsung/manta/BoardConfigVendor.mk 27 28 TARGET_CPU_ABI := armeabi-v7a 29 TARGET_CPU_ABI2 := armeabi 30 TARGET_CPU_SMP := true 31 TARGET_ARCH := arm 32 TARGET_ARCH_VARIANT := armv7-a-neon 33 TARGET_CPU_VARIANT := cortex-a15 34 35 #Bluetooth 36 BOARD_HAVE_BLUETOOTH := true 37 BOARD_HAVE_BLUETOOTH_BCM := true 38 39 TARGET_NO_BOOTLOADER := true 40 41 TARGET_NO_RADIOIMAGE := true 42 TARGET_BOARD_PLATFORM := exynos5 43 TARGET_BOOTLOADER_BOARD_NAME := manta 44 45 BOARD_EGL_CFG := device/samsung/manta/egl.cfg 46 47 OVERRIDE_RS_DRIVER := libRSDriverArm.so 48 49 #BOARD_USES_HGL := true 50 #BOARD_USES_OVERLAY := true 51 USE_OPENGL_RENDERER := true 52 NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3 53 54 TARGET_RECOVERY_FSTAB = device/samsung/manta/fstab.manta 55 TARGET_USERIMAGES_USE_EXT4 := true 56 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 685768704 57 BOARD_USERDATAIMAGE_PARTITION_SIZE := 14273216512 58 BOARD_CACHEIMAGE_PARTITION_SIZE := 553648128 59 BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 60 BOARD_FLASH_BLOCK_SIZE := 4096 61 62 #TARGET_PROVIDES_INIT_RC := true 63 #TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true 64 65 # Wifi related defines 66 BOARD_WPA_SUPPLICANT_DRIVER := NL80211 67 WPA_SUPPLICANT_VERSION := VER_0_8_X 68 BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_bcmdhd 69 BOARD_HOSTAPD_DRIVER := NL80211 70 BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_bcmdhd 71 BOARD_WLAN_DEVICE := bcmdhd 72 WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path" 73 WIFI_DRIVER_FW_PATH_STA := "/vendor/firmware/fw_bcmdhd.bin" 74 WIFI_DRIVER_FW_PATH_AP := "/vendor/firmware/fw_bcmdhd_apsta.bin" 75 76 BOARD_HAL_STATIC_LIBRARIES := libhealthd.manta libdumpstate.manta 77 78 BOARD_CHARGER_DISABLE_INIT_BLANK := true 79 80 TARGET_RECOVERY_PIXEL_FORMAT := RGBX_8888 81 TARGET_RECOVERY_UI_LIB := librecovery_ui_manta 82 TARGET_RECOVERY_UPDATER_LIBS += librecovery_updater_manta 83 TARGET_RELEASETOOLS_EXTENSIONS := device/samsung/manta 84 85 BOARD_SEPOLICY_DIRS := \ 86 device/samsung/manta/sepolicy 87 88 BOARD_SEPOLICY_UNION := \ 89 file_contexts \ 90 genfs_contexts \ 91 adbd.te \ 92 app.te \ 93 device.te \ 94 domain.te \ 95 gpsd.te \ 96 file.te \ 97 mediaserver.te \ 98 surfaceflinger.te \ 99 system.te 100