Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 1 | ############################################################################### |
| 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 | ############################################################################### |
| 6 | override COMPILE_NS_USER := 32 |
| 7 | override COMPILE_NS_KERNEL := 32 |
| 8 | override COMPILE_S_USER := 32 |
| 9 | override COMPILE_S_KERNEL := 32 |
| 10 | |
Jens Wiklander | 88d027c | 2018-05-09 10:12:03 +0200 | [diff] [blame] | 11 | # Need to set this before including common.mk |
Joakim Bech | ab26d00 | 2019-10-08 13:38:32 +0200 | [diff] [blame] | 12 | BR2_TARGET_GENERIC_GETTY_PORT ?= ttyS0 |
Jens Wiklander | 88d027c | 2018-05-09 10:12:03 +0200 | [diff] [blame] | 13 | |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 14 | ############################################################################### |
| 15 | # Includes |
| 16 | ############################################################################### |
Victor Chong | 7a71651 | 2017-09-11 15:18:44 +0100 | [diff] [blame] | 17 | include common.mk |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 18 | |
| 19 | ############################################################################### |
| 20 | # Paths to git projects and various binaries |
| 21 | ############################################################################### |
| 22 | STAGING_AREA ?= $(ROOT)/out |
| 23 | U-BOOT_PATH ?= $(ROOT)/u-boot |
| 24 | UBOOT_SPL ?= $(U-BOOT_PATH)/u-boot-spl_HS_MLO |
| 25 | UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame] | 26 | UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 27 | LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage |
| 28 | LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/dra7*.dtb) |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame] | 29 | FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-dra7xx.its |
| 30 | FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile |
Etienne Carriere | 3768a2b | 2019-05-14 17:13:19 +0200 | [diff] [blame] | 31 | OPTEE_OS_PLATFORM ?= ti-dra7xx |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame] | 32 | U-BOOT_CONFIG ?= dra7xx_hs_evm_defconfig |
| 33 | CONFIG_TYPE ?= ti_sdk_dra7x_debug |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 34 | |
| 35 | ############################################################################### |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame] | 36 | # Include common to TI builds |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 37 | ############################################################################### |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame] | 38 | include ti/ti-common.mk |