Advertisement
Guest User

BroadConfig.mk

a guest
Dec 9th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. # Copyright (C) 2011 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. # These two variables are set first, so they can be overridden
  16. # by BoardConfigVendor.mk
  17. BOARD_USES_GENERIC_AUDIO := true
  18. USE_CAMERA_STUB := false
  19. BOARD_USE_FROYO_LIBCAMERA := true
  20.  
  21. TARGET_NO_BOOTLOADER := true
  22. TARGET_NO_RADIOIMAGE := true
  23. TARGET_BOOTLOADER_BOARD_NAME := thunderc
  24.  
  25. # Board properties
  26. TARGET_BOARD_PLATFORM := msm7k
  27. # TARGET_CPU_ABI := armeabi-v6l
  28. # TARGET_CPU_ABI2 := armeabi
  29. # TARGET_ARCH_VARIANT := armv6-vfp
  30. TARGET_BOARD_PLATFORM_GPU := qcom
  31.  
  32. TARGET_OTA_ASSERT_DEVICE := thunderc
  33. PRODUCT_BUILD_PROP_OVERRIDES += TARGET_BOOTLOADER_BOARD_NAME=thunderc
  34. TARGET_BOARD_INFO_FILE := device/lge/thunderc/board-info.txt
  35.  
  36. BOARD_USE_LEGACY_TOUCHSCREEN := true
  37. BOARD_VENDOR_USE_AKMD := akm8973
  38.  
  39. TARGET_LIBAGL_USE_GRALLOC_COPYBITS := true
  40. BOARD_NO_RGBX_8888 := true
  41. # BOARD_USE_NASTY_PTHREAD_CREATE_HACK := true
  42. # TARGET_USES_16BPPSURFACE_FOR_OPAQUE := true
  43.  
  44. # TARGET_PROVIDES_INIT_TARGET_RC := true
  45.  
  46. # TARGET_USES_OLD_LIBSENSORS_HAL := true
  47.  
  48. # BOARD_USES_QCOM_HARDWARE := true
  49. # BOARD_USES_QCOM_LIBS := true
  50. # BOARD_USES_QCOM_LIBRPC := true
  51.  
  52. # BOARD_HAVE_BLUETOOTH := true
  53. # BOARD_HAVE_BLUETOOTH_BCM := true
  54. # BOARD_FORCE_STATIC_A2DP := true
  55.  
  56. # Using GPSSHIM so that we can use the LG/Qualcomm binary blobs because
  57. # the open source stuff seems to be buggy, and Qualcomm doesn't believe
  58. # in open source.
  59. # BOARD_USES_GPSSHIM := true
  60. # BOARD_GPS_NEEDS_XTRA := true
  61. # BOARD_GPS_LIBRARIES := libloc
  62.  
  63. BOARD_USE_USB_MASS_STORAGE_SWITCH := true
  64. BOARD_CUSTOM_USB_CONTROLLER := ../../device/lge/thunderc/netd/UsbController.cpp
  65.  
  66. # Wifi related defines
  67. BOARD_WLAN_DEVICE := bcm4325
  68. WPA_SUPPLICANT_VERSION := VER_0_6_X
  69. BOARD_WPA_SUPPLICANT_DRIVER := WEXT
  70. WIFI_DRIVER_MODULE_PATH := "/system/lib/modules/wireless.ko"
  71. WIFI_DRIVER_MODULE_ARG := "firmware_path=/system/etc/wl/rtecdc.bin nvram_path=/system/etc/wl/nvram.txt"
  72. WIFI_DRIVER_MODULE_NAME := wireless
  73. WIFI_DRIVER_FW_STA_PATH := "/system/etc/wl/rtecdc.bin"
  74. WIFI_DRIVER_FW_AP_PATH := "/system/etc/wl/rtecdc-apsta.bin"
  75. WIFI_DRIVER_HAS_LGE_SOFTAP := true
  76.  
  77. BOARD_EGL_CFG := device/lge/thunderc/files/lib/egl/egl.cfg
  78.  
  79. TARGET_PREBUILT_KERNEL := device/lge/thunderc/files/zImage
  80.  
  81. BOARD_KERNEL_CMDLINE := mem=477M console=ttyMSM2,115200n8 androidboot.hardware=thunderc uart_console=disable recovery=off lge.rev=10
  82. BOARD_KERNEL_BASE := 0x12200000
  83. BOARD_PAGE_SIZE := 0x00000800
  84.  
  85. # Appropriate defaults?
  86. BOARD_FLASH_BLOCK_SIZE := 131072
  87.  
  88. BOARD_BOOTIMAGE_PARTITION_SIZE := 0x00700000
  89. BOARD_RECOVERYIMAGE_PARTITION_SIZE := 0x00700000
  90. BOARD_SYSTEMIMAGE_PARTITION_SIZE := 0x0a480000
  91. BOARD_USERDATAIMAGE_PARTITION_SIZE := 0x0b2e0000
  92.  
  93. #BOARD_HAS_NO_SELECT_BUTTON := true
  94.  
  95. WITH_DEXPREOPT := false
  96. # WITH_JIT := true
  97. # ENABLE_JSC_JIT := true
  98. JS_ENGINE := v8
  99.  
  100. # BUILD_WITH_FULL_STAGEFRIGHT := true
  101. # TARGET_PROVIDES_LIBAUDIO := true
  102. # TARGET_PROVIDES_LIBRIL = vendor/lge/thunderc/proprietary/system/lib/libril-qc-1.so
  103.  
  104. # BOARD_HAVE_FM_RADIO := true
  105. # BOARD_GLOBAL_CFLAGS += -DHAVE_FM_RADIO
  106. # TARGET_SF_NEEDS_REAL_DIMENSIONS := true
  107.  
  108. BOARD_USES_OVERLAY := true
  109.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement