mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
17c2987336
Modify the SPL build procedure for AM57xx and DRA7xx high-security (HS) device variants to create a secure u-boot_HS.img FIT blob that contains U-Boot and DTB artifacts signed with a TI-specific process based on the CONFIG_TI_SECURE_DEVICE config option and the externally-provided image signing tool. Also populate the corresponding FIT image post processing call to be performed during SPL runtime. Signed-off-by: Daniel Allred <d-allred@ti.com> Signed-off-by: Andreas Dannenberg <dannenberg@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
22 lines
395 B
Makefile
22 lines
395 B
Makefile
#
|
|
# Copyright 2011 Linaro Limited
|
|
#
|
|
# Aneesh V <annesh@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)
|
|
ALL-y += u-boot-spl_HS_MLO u-boot-spl_HS_X-LOADER
|
|
else
|
|
ALL-y += MLO
|
|
endif
|
|
else
|
|
ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
|
|
ALL-y += u-boot_HS.img
|
|
endif
|
|
ALL-y += u-boot.img
|
|
endif
|