blob: dd582ce4fc3a43571c5dee42b2fda7be92bedb6e [file] [log] [blame]
Deepa Dinamanicbd3c1f2013-05-16 15:03:39 -07001# top level project rules for the apq8084 project
2#
3LOCAL_DIR := $(GET_LOCAL_DIR)
4
5TARGET := apq8084
6
7MODULES += app/aboot
8
9DEBUG := 1
10EMMC_BOOT := 1
Sundarajan Srinivasanf7ef47f2013-09-05 17:46:24 -070011ENABLE_SDHCI_SUPPORT := 1
Channagoud Kadabi5cea9142013-09-18 12:02:43 -070012ENABLE_UFS_SUPPORT := 1
Amol Jadi0a4c9b42013-10-11 14:22:11 -070013ENABLE_USB30_SUPPORT := 1
Deepa Dinamanicbd3c1f2013-05-16 15:03:39 -070014
15#DEFINES += WITH_DEBUG_DCC=1
16DEFINES += WITH_DEBUG_UART=1
17#DEFINES += WITH_DEBUG_FBCON=1
18DEFINES += DEVICE_TREE=1
19
20#Disable thumb mode
21ENABLE_THUMB := false
22
23ifeq ($(EMMC_BOOT),1)
24DEFINES += _EMMC_BOOT=1
25endif
26
27ifeq ($(ENABLE_SDHCI_SUPPORT),1)
28DEFINES += MMC_SDHCI_SUPPORT=1
29endif
Channagoud Kadabi5cea9142013-09-18 12:02:43 -070030
31ifeq ($(ENABLE_UFS_SUPPORT),1)
32DEFINES += UFS_SUPPORT=1
33endif
Amol Jadi0a4c9b42013-10-11 14:22:11 -070034
35ifeq ($(ENABLE_USB30_SUPPORT),1)
36DEFINES += USB30_SUPPORT=1
37endif