blob: db1b241a81e403e75a605fb5c15c62cb9dcef9fe [file] [log] [blame]
Andrew F. Davis815aac92017-04-02 18:22:53 -05001###############################################################################
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
Joakim Bechab26d002019-10-08 13:38:32 +020012BR2_TARGET_GENERIC_GETTY_PORT ?= ttyS0
Jens Wiklander88d027c2018-05-09 10:12:03 +020013
Andrew F. Davis815aac92017-04-02 18:22:53 -050014###############################################################################
15# Includes
16###############################################################################
Victor Chong7a716512017-09-11 15:18:44 +010017include common.mk
Andrew F. Davis815aac92017-04-02 18:22:53 -050018
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_ISSW
25UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img
26UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt
27LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage
28LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/am43*.dtb)
29FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-am43xx.its
30FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile
Etienne Carriere3768a2b2019-05-14 17:13:19 +020031OPTEE_OS_PLATFORM ?= ti-am43xx
Andrew F. Davis815aac92017-04-02 18:22:53 -050032U-BOOT_CONFIG ?= am43xx_hs_evm_defconfig
33CONFIG_TYPE ?= ti_sdk_am4x_debug
Andrew F. Davis815aac92017-04-02 18:22:53 -050034
35###############################################################################
36# Include common to TI builds
37###############################################################################
38include ti/ti-common.mk