mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-02 01:19:27 +00:00
As of u-boot 2025.10, the fit image requires a value for the default configuration. The change [1] introduced the FIT_CONF_DEFAULT_DTB code to the legacy fitimage class, but failed to set values for the legacy platforms. This led to us putting default = "" in the .its file, which is now an error. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
24 lines
639 B
Plaintext
24 lines
639 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: AM335x HS EVM
|
|
#@DESCRIPTION: Machine configuration for the TI AM335x HS EVM
|
|
|
|
require conf/machine/am335x-evm.conf
|
|
|
|
UBOOT_MACHINE = ""
|
|
# Last config in the list is default
|
|
UBOOT_CONFIG ??= "uart mmc"
|
|
UBOOT_CONFIG[uart] = "am335x_hs_evm_uart_config"
|
|
UBOOT_CONFIG[mmc] = "am335x_hs_evm_config"
|
|
|
|
# FIT image for legacy secure devices
|
|
KERNEL_BASE_CLASS = "kernel_legacyhs"
|
|
KERNEL_CLASSES += " kernel-fitimage-legacyhs"
|
|
KERNEL_IMAGETYPES += " fitImage"
|
|
|
|
# FIT image settings
|
|
FITIMAGE_HASH_ALGO = ""
|
|
FITIMAGE_DTB_BY_NAME = "1"
|
|
FITIMAGE_TEE_BY_NAME = "1"
|
|
FITIMAGE_CONF_BY_NAME = "1"
|
|
FIT_CONF_DEFAULT_DTB = "am335x-evm.dtb"
|