boot/uboot: add stm32 binary format
Add `.stm32` binary format that U-Boot generates for the trusted configuration of STM32MP platforms. Signed-off-by: Shlomi Vaknin <shlomi.39sd@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
8cd4aa8fde
commit
5d277d20cc
@@ -343,6 +343,10 @@ config BR2_TARGET_UBOOT_FORMAT_SD
|
|||||||
|
|
||||||
See doc/README.mxs (or doc/README.mx28_common before 2013.07)
|
See doc/README.mxs (or doc/README.mx28_common before 2013.07)
|
||||||
|
|
||||||
|
config BR2_TARGET_UBOOT_FORMAT_STM32
|
||||||
|
bool "u-boot.stm32"
|
||||||
|
depends on BR2_arm
|
||||||
|
|
||||||
config BR2_TARGET_UBOOT_FORMAT_CUSTOM
|
config BR2_TARGET_UBOOT_FORMAT_CUSTOM
|
||||||
bool "Custom (specify below)"
|
bool "Custom (specify below)"
|
||||||
help
|
help
|
||||||
|
|||||||
@@ -121,6 +121,11 @@ UBOOT_MAKE_TARGET += u-boot.sb
|
|||||||
UBOOT_DEPENDENCIES += host-elftosb host-openssl
|
UBOOT_DEPENDENCIES += host-elftosb host-openssl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_TARGET_UBOOT_FORMAT_STM32),y)
|
||||||
|
UBOOT_BINS += u-boot.stm32
|
||||||
|
UBOOT_MAKE_TARGET += u-boot.stm32
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_TARGET_UBOOT_FORMAT_CUSTOM),y)
|
ifeq ($(BR2_TARGET_UBOOT_FORMAT_CUSTOM),y)
|
||||||
UBOOT_BINS += $(call qstrip,$(BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME))
|
UBOOT_BINS += $(call qstrip,$(BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME))
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user