blob: 2734fb65d49d33fce7a476df3969a203731b5317 [file] [log] [blame]
Aparna Mallavarapu01fc00a2015-06-01 20:37:05 +05301LOCAL_DIR := $(GET_LOCAL_DIR)
2
3ARCH := arm
4#Compiling this as cortex-a8 until the compiler supports krait
5ARM_CPU := cortex-a8
6CPU := generic
7
8DEFINES += ARM_CPU_CORE_A7
9DEFINES += ARM_CORE_V8
10
11DEFINES += PERIPH_BLK_BLSP=1
12DEFINES += WITH_CPU_EARLY_INIT=0 WITH_CPU_WARM_BOOT=0
13
14INCLUDES += -I$(LOCAL_DIR)/include -I$(LK_TOP_DIR)/platform/msm_shared/include
15
16OBJS += \
17 $(LOCAL_DIR)/platform.o \
18 $(LOCAL_DIR)/acpuclock.o \
P.V. Phani Kumar40fa1352015-08-13 18:15:03 +053019 $(LOCAL_DIR)/msmtitanium-clock.o \
Aparna Mallavarapu01fc00a2015-06-01 20:37:05 +053020 $(LOCAL_DIR)/gpio.o
21
22LINKER_SCRIPT += $(BUILDDIR)/system-onesegment.ld
23
24include platform/msm_shared/rules.mk