blob: b9d8214db2b4aaa5745f6b859c87cfc0013db9b2 [file] [log] [blame]
Andrew F. Davis830ceed2016-12-13 16:32:08 -06001###############################################################################
2# Following variables defines how the NS_USER (Non Secure User - Client
3# Application), NS_KERNEL (Non Secure Kernel), S_KERNEL (Secure Kernel) and
4# S_USER (Secure User - TA) are compiled
5###############################################################################
6override COMPILE_NS_USER := 32
7override COMPILE_NS_KERNEL := 32
8override COMPILE_S_USER := 32
9override COMPILE_S_KERNEL := 32
10
11###############################################################################
12# Includes
13###############################################################################
14-include common.mk
15
16###############################################################################
17# Paths to git projects and various binaries
18###############################################################################
19STAGING_AREA ?= $(ROOT)/out
20U-BOOT_PATH ?= $(ROOT)/u-boot
21UBOOT_SPL ?= $(U-BOOT_PATH)/u-boot-spl_HS_MLO
22UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img
Andrew F. Davisf6980472017-04-02 17:25:10 -050023UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt
Andrew F. Davis830ceed2016-12-13 16:32:08 -060024LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage
25LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/dra7*.dtb)
Andrew F. Davisf6980472017-04-02 17:25:10 -050026FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-dra7xx.its
27FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile
28OPTEE_PLATFORM ?= ti-dra7xx
29U-BOOT_CONFIG ?= dra7xx_hs_evm_defconfig
30CONFIG_TYPE ?= ti_sdk_dra7x_debug
31BUSYBOX_TARGET ?= dra7xx
Andrew F. Davis830ceed2016-12-13 16:32:08 -060032
33###############################################################################
Andrew F. Davisf6980472017-04-02 17:25:10 -050034# Include common to TI builds
Andrew F. Davis830ceed2016-12-13 16:32:08 -060035###############################################################################
Andrew F. Davisf6980472017-04-02 17:25:10 -050036include ti/ti-common.mk