summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAndreas Dannenberg <dannenberg@ti.com>2016-06-27 14:19:22 (GMT)
committerTom Rini <trini@konsulko.com>2016-07-14 22:22:22 (GMT)
commit17c298733612f68ebf7702f28f32ad78c7ef115e (patch)
tree11d0ef07ab235123bab4b0a4ee8b7abe13451609 /arch
parentda74d1f341e46ecc0ae893b4aa3b771ce9dba9f3 (diff)
downloadu-boot-fsl-qoriq-17c298733612f68ebf7702f28f32ad78c7ef115e.tar.xz
arm: omap5: add U-Boot FIT signing and SPL image post-processing
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/omap5/config.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/omap5/config.mk b/arch/arm/cpu/armv7/omap5/config.mk
index a7e55a5..d245572 100644
--- a/arch/arm/cpu/armv7/omap5/config.mk
+++ b/arch/arm/cpu/armv7/omap5/config.mk
@@ -15,5 +15,8 @@ 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