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 | |
| 11 | ############################################################################### |
| 12 | # Includes |
| 13 | ############################################################################### |
| 14 | -include common.mk |
| 15 | |
| 16 | ############################################################################### |
| 17 | # Paths to git projects and various binaries |
| 18 | ############################################################################### |
| 19 | STAGING_AREA ?= $(ROOT)/out |
| 20 | U-BOOT_PATH ?= $(ROOT)/u-boot |
| 21 | UBOOT_SPL ?= $(U-BOOT_PATH)/u-boot-spl_HS_MLO |
| 22 | UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame^] | 23 | UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 24 | LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage |
| 25 | LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/dra7*.dtb) |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame^] | 26 | FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-dra7xx.its |
| 27 | FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile |
| 28 | OPTEE_PLATFORM ?= ti-dra7xx |
| 29 | U-BOOT_CONFIG ?= dra7xx_hs_evm_defconfig |
| 30 | CONFIG_TYPE ?= ti_sdk_dra7x_debug |
| 31 | BUSYBOX_TARGET ?= dra7xx |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 32 | |
| 33 | ############################################################################### |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame^] | 34 | # Include common to TI builds |
Andrew F. Davis | 830ceed | 2016-12-13 16:32:08 -0600 | [diff] [blame] | 35 | ############################################################################### |
Andrew F. Davis | f698047 | 2017-04-02 17:25:10 -0500 | [diff] [blame^] | 36 | include ti/ti-common.mk |