arm64: dts: ti: align fitImage configurations with u-boot board names

Update the FIT image base configuration name from 'conf-750-8400'
to 'conf-PFC-750-840x' to correctly map against the runtime U-Boot
evaluation of the '${board_name}' environment variable.

Signed-off-by: Heinrich Toews <ht@twx-software.de>
This commit is contained in:
Heinrich Toews
2026-05-20 12:50:47 +02:00
parent 8c4152a66a
commit dd08a46be6
+16 -16
View File
@@ -19,7 +19,7 @@
};
};
fdt-750-8400 {
fdt-PFC-750-840x {
description = "Flattened Device Tree blob";
data = /incbin/("k3-am623-pfc-750-8400.dtb");
type = "flat_dt";
@@ -32,7 +32,7 @@
};
};
img-overlay-750-8400-wosm-p0000042 {
img-overlay-PFC-750-840x-wosm-p0000042 {
description = "WOSM Overlay";
data = /incbin/("overlay-750-8400-wosm-p0000042.dtbo");
type = "flat_dt";
@@ -41,7 +41,7 @@
};
img-overlay-750-8400-base-p0000017 {
img-overlay-PFC-750-840x-base-p0000017 {
description = "Base Overlay";
data = /incbin/("overlay-750-8400-base-p0000017.dtbo");
type = "flat_dt";
@@ -50,7 +50,7 @@
};
img-overlay-750-8400-localbus-p0000007 {
img-overlay-PFC-750-840x-localbus-p0000007 {
description = "Localbus Overlay";
data = /incbin/("overlay-750-8400-localbus-p0000007.dtbo");
type = "flat_dt";
@@ -59,7 +59,7 @@
};
img-overlay-750-8400-interaction-p0000031 {
img-overlay-PFC-750-840x-interaction-p0000031 {
description = "Interaction Overlay";
data = /incbin/("overlay-750-8400-interaction-p0000031.dtbo");
type = "flat_dt";
@@ -70,31 +70,31 @@
};
configurations {
default = "conf-750-8400";
conf-750-8400 {
default = "conf-PFC-750-840x";
conf-PFC-750-840x {
description = "Boot Linux kernel with base FDT and overlays";
kernel = "kernel";
fdt = "fdt-750-8400", "img-overlay-750-8400-wosm-p0000042", "img-overlay-750-8400-base-p0000017", "img-overlay-750-8400-localbus-p0000007", "img-overlay-750-8400-interaction-p0000031";
fdt = "fdt-PFC-750-840x", "img-overlay-PFC-750-840x-wosm-p0000042", "img-overlay-PFC-750-840x-base-p0000017", "img-overlay-PFC-750-840x-localbus-p0000007", "img-overlay-PFC-750-840x-interaction-p0000031";
};
overlay-750-8400-wosm-p0000042 {
overlay-PFC-750-840x-wosm-p0000042 {
description = "WOSM Overlay config";
fdt = "img-overlay-750-8400-wosm-p0000042";
fdt = "img-overlay-PFC-750-840x-wosm-p0000042";
};
overlay-750-8400-base-p0000017 {
overlay-PFC-750-840x-base-p0000017 {
description = "Base Overlay config";
fdt = "img-overlay-750-8400-base-p0000017";
fdt = "img-overlay-PFC-750-840x-base-p0000017";
};
overlay-750-8400-localbus-p0000007 {
overlay-PFC-750-840x-localbus-p0000007 {
description = "Localbus Overlay config";
fdt = "img-overlay-750-8400-localbus-p0000007";
fdt = "img-overlay-PFC-750-840x-localbus-p0000007";
};
overlay-750-8400-interaction-p0000031 {
overlay-PFC-750-840x-interaction-p0000031 {
description = "Interaction Overlay config";
fdt = "img-overlay-750-8400-interaction-p0000031";
fdt = "img-overlay-PFC-750-840x-interaction-p0000031";
};
};
};