1PLATFORM_FLAVOR ?= salvator_h3 2 3include core/arch/arm/cpu/cortex-armv8-0.mk 4 5$(call force,CFG_GENERIC_BOOT,y) 6$(call force,CFG_PM_STUBS,y) 7$(call force,CFG_SECURE_TIME_SOURCE_CNTPCT,y) 8$(call force,CFG_WITH_ARM_TRUSTED_FW,y) 9$(call force,CFG_SCIF,y) 10$(call force,CFG_CORE_LARGE_PHYS_ADDR,y) 11 12ifeq ($(CFG_ARM64_core),y) 13$(call force,CFG_WITH_LPAE,y) 14ta-targets += ta_arm64 15else 16$(call force,CFG_ARM32_core,y) 17endif 18 19ifeq ($(CFG_ARM32_core),y) 20ta-targets = ta_arm32 21endif 22 23CFG_WITH_STACK_CANARIES ?= y 24