diff options
author | Madan Srinivas <madans@ti.com> | 2016-06-27 09:19:23 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-14 18:22:23 -0400 |
commit | e29878fc47f19e2ad6824cd61c69f2c187c5fb8a (patch) | |
tree | 1d31d31213f14a057729e21f4580b6b273ab274a /arch/arm/cpu/armv7/am33xx | |
parent | 17c298733612f68ebf7702f28f32ad78c7ef115e (diff) | |
download | u-boot-imx-e29878fc47f19e2ad6824cd61c69f2c187c5fb8a.zip u-boot-imx-e29878fc47f19e2ad6824cd61c69f2c187c5fb8a.tar.gz u-boot-imx-e29878fc47f19e2ad6824cd61c69f2c187c5fb8a.tar.bz2 |
arm: am4x: add U-Boot FIT signing and SPL image post-processing
Modify the SPL build procedure for AM437x high-security (HS) device
variants to create a secure u-boot_HS.img FIT blob that contains U-Boot
and DTB artifacts signed (and optionally encrypted) 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: Madan Srinivas <madans@ti.com>
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/cpu/armv7/am33xx')
-rw-r--r-- | arch/arm/cpu/armv7/am33xx/config.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/am33xx/config.mk b/arch/arm/cpu/armv7/am33xx/config.mk index 6d95d32..ab94708 100644 --- a/arch/arm/cpu/armv7/am33xx/config.mk +++ b/arch/arm/cpu/armv7/am33xx/config.mk @@ -26,6 +26,7 @@ endif else ifeq ($(CONFIG_TI_SECURE_DEVICE),y) ALL-$(CONFIG_QSPI_BOOT) += u-boot_HS_XIP_X-LOADER +ALL-y += u-boot_HS.img endif ALL-y += u-boot.img endif |