mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
883dfd1553
Modifies the config.mk to build secure images when building the SPL for secure devices. Depending on the boot media, different images are needed for secure devices. The build generates u-boot*_HS_* files as appropriate for the different boot modes. The same u-boot binary file is processed slightly differently to produce a different boot image, depending on whether the user wants to boot off SPI, QSPI or other boot media. Refer to README.ti-secure for more information. Signed-off-by: Madan Srinivas <madans@ti.com> Signed-off-by: Daniel Allred <d-allred@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com> Tested-by: Andreas Dannenberg <dannenberg@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
31 lines
706 B
Makefile
31 lines
706 B
Makefile
#
|
|
# Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
include $(srctree)/$(CPUDIR)/omap-common/config_secure.mk
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
|
|
#
|
|
# For booting from SPI use
|
|
# u-boot-spl_HS_SPI_X-LOADER to program flash
|
|
#
|
|
# For booting spl from all other media
|
|
# use u-boot-spl_HS_ISSW
|
|
#
|
|
# Refer to README.ti-secure for more info
|
|
#
|
|
ALL-y += u-boot-spl_HS_ISSW
|
|
ALL-$(CONFIG_SPL_SPI_SUPPORT) += u-boot-spl_HS_SPI_X-LOADER
|
|
else
|
|
ALL-y += MLO
|
|
ALL-$(CONFIG_SPL_SPI_SUPPORT) += MLO.byteswap
|
|
endif
|
|
else
|
|
ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
|
|
ALL-$(CONFIG_QSPI_BOOT) += u-boot_HS_XIP_X-LOADER
|
|
endif
|
|
ALL-y += u-boot.img
|
|
endif
|