forked from OP-TEE/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
am43xx.mk
36 lines (33 loc) · 1.63 KB
/
am43xx.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
###############################################################################
# Following variables defines how the NS_USER (Non Secure User - Client
# Application), NS_KERNEL (Non Secure Kernel), S_KERNEL (Secure Kernel) and
# S_USER (Secure User - TA) are compiled
###############################################################################
override COMPILE_NS_USER := 32
override COMPILE_NS_KERNEL := 32
override COMPILE_S_USER := 32
override COMPILE_S_KERNEL := 32
###############################################################################
# Includes
###############################################################################
-include common.mk
###############################################################################
# Paths to git projects and various binaries
###############################################################################
STAGING_AREA ?= $(ROOT)/out
U-BOOT_PATH ?= $(ROOT)/u-boot
UBOOT_SPL ?= $(U-BOOT_PATH)/u-boot-spl_HS_ISSW
UBOOT_IMG ?= $(U-BOOT_PATH)/u-boot_HS.img
UBOOT_ENV ?= $(BUILD_PATH)/ti/uEnv.txt
LINUX_IMAGE ?= $(LINUX_PATH)/arch/arm/boot/zImage
LINUX_DTBS ?= $(wildcard $(LINUX_PATH)/arch/arm/boot/dts/am43*.dtb)
FIT_SOURCE ?= $(BUILD_PATH)/ti/fitImage-am43xx.its
FIT_MAKEFILE ?= $(BUILD_PATH)/ti/Makefile
OPTEE_PLATFORM ?= ti-am43xx
U-BOOT_CONFIG ?= am43xx_hs_evm_defconfig
CONFIG_TYPE ?= ti_sdk_am4x_debug
BUSYBOX_TARGET ?= am43xx
###############################################################################
# Include common to TI builds
###############################################################################
include ti/ti-common.mk