From: Heinrich Schuchardt Date: Wed, 15 Apr 2026 21:21:36 +0000 (+0200) Subject: sunxi: use vendor prefix for $fdtfile on RISC-V too X-Git-Tag: v2026.07-rc2~30^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2472b31997a3343f5be14b7d3c5549010ea83b1a;p=thirdparty%2Fu-boot.git sunxi: use vendor prefix for $fdtfile on RISC-V too Once we complete the support for RISC-V Allwinner D1 (sun20i), we will need to prefix $fdtfile with the vendor prefix to match the Linux device-tree directory structure. Signed-off-by: Heinrich Schuchardt Acked-by: Andre Przywara --- diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index b29a25d5617..49d5617f028 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -280,7 +280,7 @@ CONSOLE_STDIN_SETTINGS \ CONSOLE_STDOUT_SETTINGS -#ifdef CONFIG_ARM64 +#if defined(CONFIG_ARM64) || defined(CONFIG_RISCV) #define FDTFILE "allwinner/" CONFIG_DEFAULT_DEVICE_TREE ".dtb" #else #define FDTFILE CONFIG_DEFAULT_DEVICE_TREE ".dtb"