blob: e7f8a590a3576c0cf9807c419c141c6fb318ef8f [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
Jens Wiklander88d027c2018-05-09 10:12:03 +020011# Need to set this before including common.mk
12BUILDROOT_GETTY_PORT ?= ttyS0
13
Andrew F. Davis830ceed2016-12-13 16:32:08 -060014###############################################################################
15# Includes
16###############################################################################
Victor Chong7a716512017-09-11 15:18:44 +010017include common.mk
Andrew F. Davis830ceed2016-12-13 16:32:08 -060018
19###############################################################################
20# Paths to git projects and various binaries
21###############################################################################
22STAGING_AREA ?= $(ROOT)/out
23U-BOOT_PATH ?= $(ROOT)/u-boot
24UBOOT_SPL ?= $(U-BOOT_PATH)/u-boot-spl_HS_MLO
25UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img
Andrew F. Davisf6980472017-04-02 17:25:10 -050026UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt
Andrew F. Davis830ceed2016-12-13 16:32:08 -060027LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage
28LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/dra7*.dtb)
Andrew F. Davisf6980472017-04-02 17:25:10 -050029FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-dra7xx.its
30FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile
31OPTEE_PLATFORM ?= ti-dra7xx
32U-BOOT_CONFIG ?= dra7xx_hs_evm_defconfig
33CONFIG_TYPE ?= ti_sdk_dra7x_debug
Andrew F. Davis830ceed2016-12-13 16:32:08 -060034
35###############################################################################
Andrew F. Davisf6980472017-04-02 17:25:10 -050036# Include common to TI builds
Andrew F. Davis830ceed2016-12-13 16:32:08 -060037###############################################################################
Andrew F. Davisf6980472017-04-02 17:25:10 -050038include ti/ti-common.mk