diff options
| author | Scott Mertz <scott@cyngn.com> | 2015-05-18 23:57:55 -0700 |
|---|---|---|
| committer | Ricardo Cerqueira <ricardo@cyngn.com> | 2015-06-03 00:14:19 +0100 |
| commit | 927fb2bcea2772f54013dd56a93eb607795d28c7 (patch) | |
| tree | b43f4ffab3cf9991cfa10adb90f3a7379a072fd4 | |
| parent | fd728efccb93b67cf868238fb3f24be321773a58 (diff) | |
lettuce: don't shadow LOCAL_PATH
Change-Id: Ic8a6af8e6d80bcea97185ee1f79cb0a1ab85d065
| -rw-r--r-- | BoardConfig.mk | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk index 9dd2044..3028b77 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -13,9 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -LOCAL_PATH := device/yu/lettuce +DEVICE_PATH := device/yu/lettuce -TARGET_SPECIFIC_HEADER_PATH := $(LOCAL_PATH)/include +TARGET_SPECIFIC_HEADER_PATH := $(DEVICE_PATH)/include # Platform TARGET_BOARD_PLATFORM := msm8916 @@ -51,7 +51,7 @@ TARGET_CPU_VARIANT := cortex-a53 endif # Kernel -BOARD_CUSTOM_BOOTIMG_MK := $(LOCAL_PATH)/mkbootimg.mk +BOARD_CUSTOM_BOOTIMG_MK := $(DEVICE_PATH)/mkbootimg.mk BOARD_KERNEL_BASE := 0x80000000 BOARD_KERNEL_CMDLINE := console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 androidboot.bootdevice=7824900.sdhci lpm_levels.sleep_disabled=1 earlyprintk BOARD_KERNEL_PAGESIZE := 2048 @@ -78,7 +78,7 @@ AUDIO_FEATURE_LOW_LATENCY_PRIMARY := true BOARD_USES_ALSA_AUDIO := true # Bluetooth -BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(LOCAL_PATH)/bluetooth +BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(DEVICE_PATH)/bluetooth BOARD_HAVE_BLUETOOTH := true BOARD_HAVE_BLUETOOTH_QCOM := true BLUETOOTH_HCI_USE_MCT := true @@ -91,7 +91,7 @@ TARGET_USE_VENDOR_CAMERA_EXT := true USE_DEVICE_SPECIFIC_CAMERA := true # CMHW -BOARD_HARDWARE_CLASS := $(LOCAL_PATH)/cmhw/src +BOARD_HARDWARE_CLASS := $(DEVICE_PATH)/cmhw/src # malloc implementation MALLOC_IMPL := dlmalloc @@ -109,7 +109,7 @@ ifeq ($(HOST_OS),linux) endif # Display -BOARD_EGL_CFG := $(LOCAL_PATH)/configs/egl.cfg +BOARD_EGL_CFG := $(DEVICE_PATH)/configs/egl.cfg MAX_EGL_CACHE_KEY_SIZE := 12*1024 MAX_EGL_CACHE_SIZE := 2048*1024 NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3 @@ -127,7 +127,7 @@ TARGET_QCOM_NO_FM_FIRMWARE := true EXTENDED_FONT_FOOTPRINT := true # GPS -TARGET_GPS_HAL_PATH := $(LOCAL_PATH)/gps +TARGET_GPS_HAL_PATH := $(DEVICE_PATH)/gps TARGET_NO_RPC := true # Init @@ -154,11 +154,11 @@ TARGET_POWERHAL_VARIANT := qcom BOARD_USES_QCOM_HARDWARE := true # Recovery -TARGET_RECOVERY_FSTAB := $(LOCAL_PATH)/rootdir/etc/fstab.qcom +TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.qcom TARGET_USERIMAGES_USE_EXT4 := true # Releasetools -TARGET_RELEASETOOLS_EXTENSIONS := $(LOCAL_PATH) +TARGET_RELEASETOOLS_EXTENSIONS := $(DEVICE_PATH) # RIL TARGET_RIL_VARIANT := caf |
