summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2024-05-06 13:19:59 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2024-05-06 13:27:41 +0200
commit979d850ac241cffb15963794245813256c025898 (patch)
treef129226f2a94cec66cab0c452da834546a03156c
parentad0aaee5cabd08652635b440353a88640db50a77 (diff)
verdin-am62-k3r5: drop -gp from the u-boot config names
The R5 U-Boot now builds binaries for all SoC variants (gp, hs-fs, hs). Reflect that in the UBOOT_CONFIG variable. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--conf/machine/verdin-am62-k3r5.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/machine/verdin-am62-k3r5.conf b/conf/machine/verdin-am62-k3r5.conf
index 024f0fa..7d92e3c 100644
--- a/conf/machine/verdin-am62-k3r5.conf
+++ b/conf/machine/verdin-am62-k3r5.conf
@@ -16,10 +16,10 @@ SYSFW_SOC = "am62x"
SYSFW_CONFIG = "verdin"
SYSFW_SUFFIX = "hs-fs"
-UBOOT_DFU_CONFIG = "dfu-gp"
+UBOOT_DFU_CONFIG = "dfu"
# The DFU config does not (yet) exist in upstream. It is needed only
# if booting from DFU/USB.
UBOOT_DFU_CONFIG:upstream = ""
-UBOOT_CONFIG ??= "${UBOOT_DFU_CONFIG} sd-gp"
-UBOOT_CONFIG[dfu-gp] = "verdin-am62_r5_usbdfu_defconfig,dfu,spl/u-boot-spl.bin"
-UBOOT_CONFIG[sd-gp] = "verdin-am62_r5_defconfig,sdcard,spl/u-boot-spl.bin"
+UBOOT_CONFIG ??= "${UBOOT_DFU_CONFIG} sd"
+UBOOT_CONFIG[dfu] = "verdin-am62_r5_usbdfu_defconfig,dfu,spl/u-boot-spl.bin"
+UBOOT_CONFIG[sd] = "verdin-am62_r5_defconfig,sdcard,spl/u-boot-spl.bin"