mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
a0379c6fe3
We can skip the image authentication check at runtime if the device is GP. This reduces the delta between GP and HS U-Boot builds. End goal is to re-unify the two build types into one build that can run on all device types. Signed-off-by: Andrew Davis <afd@ti.com>
20 lines
716 B
Makefile
20 lines
716 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
# Lokesh Vutla <lokeshvutla@ti.com>
|
|
|
|
obj-$(CONFIG_SOC_K3_J721E) += j721e/ j7200/
|
|
obj-$(CONFIG_SOC_K3_J721S2) += j721s2/
|
|
obj-$(CONFIG_SOC_K3_AM625) += am62x/
|
|
obj-$(CONFIG_ARM64) += arm64-mmu.o
|
|
obj-$(CONFIG_CPU_V7R) += r5_mpu.o lowlevel_init.o
|
|
obj-$(CONFIG_ARM64) += cache.o
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
obj-$(CONFIG_SOC_K3_AM654) += am654_init.o
|
|
obj-$(CONFIG_SOC_K3_J721E) += j721e_init.o
|
|
obj-$(CONFIG_SOC_K3_J721S2) += j721s2_init.o
|
|
obj-$(CONFIG_SOC_K3_AM642) += am642_init.o
|
|
obj-$(CONFIG_SOC_K3_AM625) += am625_init.o
|
|
obj-$(CONFIG_K3_LOAD_SYSFW) += sysfw-loader.o
|
|
endif
|
|
obj-y += common.o security.o
|