mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
boot/uboot: add ADSP LDR binary format
Signed-off-by: Philip Molloy <philip.molloy@analog.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
3140b9a171
commit
2ef9fd947e
@@ -479,6 +479,14 @@ config BR2_TARGET_UBOOT_FORMAT_QSPI_BIN
|
||||
file for flashing by combining the spl/boot.bin and
|
||||
u-boot.itb files into a unified binary.
|
||||
|
||||
config BR2_TARGET_UBOOT_FORMAT_ADSP_LDR
|
||||
bool "u-boot.ldr"
|
||||
depends on BR2_arm || BR2_aarch64
|
||||
help
|
||||
Boot stream format for Analog Devices, Inc. ADSP-SCxxx
|
||||
processors including 32-bit SC589, SC592, and SC594, as
|
||||
well as 64-bit SC596 and SC598
|
||||
|
||||
config BR2_TARGET_UBOOT_FORMAT_STM32
|
||||
bool "u-boot.stm32"
|
||||
depends on BR2_arm
|
||||
|
||||
@@ -257,6 +257,11 @@ UBOOT_MAKE_OPTS += TEE=$(BINARIES_DIR)/$(notdir $(ROCKCHIP_RKBIN_TEE_FILENAME))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TARGET_UBOOT_FORMAT_ADSP_LDR),y)
|
||||
UBOOT_BINS += u-boot.ldr
|
||||
UBOOT_DEPENDENCIES += host-adsp-ldr
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TARGET_UBOOT_NEEDS_DTC),y)
|
||||
UBOOT_DEPENDENCIES += host-dtc
|
||||
UBOOT_MAKE_OPTS += DTC=$(HOST_DIR)/bin/dtc
|
||||
|
||||
Reference in New Issue
Block a user