mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-21 09:21:33 +01:00
arm: k3-am65-iot2050: Fix invalid default configuration reference
mkimage introduced a validation step to ensure that the 'default' property under the /configurations node in a FIT image refers to a valid subnode. This exposed an issue in the k3-am65-iot2050-boot-image.dtsi, where the 'default' property was set to "ti/k3-am6528-iot2050-basic" and "ti/k3-am6528-iot2050-basic-pg2", which do not correspond to actual configuration node names. This patch updates both /configurations nodes to reference the correct subnode. Without this fix, mkimage will fail with an error: "ERROR: Default configuration 'ti/k3-am6528-iot2050-basic' not found under /configurations" An upcoming commit will validate the if the default configuration exists Signed-off-by: Aristo Chen <aristo.chen@canonical.com>
This commit is contained in:
parent
9204cae093
commit
f7b03695d4
@ -208,7 +208,7 @@
|
|||||||
fit,fdt-list-val = "ti/k3-am6528-iot2050-basic", "ti/k3-am6548-iot2050-advanced";
|
fit,fdt-list-val = "ti/k3-am6528-iot2050-basic", "ti/k3-am6548-iot2050-advanced";
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
default = "ti/k3-am6528-iot2050-basic";
|
default = "config-1";
|
||||||
@config-SEQ {
|
@config-SEQ {
|
||||||
loadables =
|
loadables =
|
||||||
#ifdef CONFIG_WDT_K3_RTI_FW_FILE
|
#ifdef CONFIG_WDT_K3_RTI_FW_FILE
|
||||||
@ -265,7 +265,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
default = "ti/k3-am6528-iot2050-basic-pg2";
|
default = "config-1";
|
||||||
@config-SEQ {
|
@config-SEQ {
|
||||||
loadables =
|
loadables =
|
||||||
#ifdef CONFIG_WDT_K3_RTI_FW_FILE
|
#ifdef CONFIG_WDT_K3_RTI_FW_FILE
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user