summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2021-05-10 20:23:41 +0800
committerLeo Yu-Chi Liang <ycliang@andestech.com>2021-05-19 17:01:51 +0800
commit84dee33ca81d72d2c0749d1649d42943ee370210 (patch)
tree53395dbab392213cc8581ddcd20bbc7f4d9b46c3 /common
parentcc269e1c008500430a687427ffabecd330b7f020 (diff)
downloadu-boot-84dee33ca81d72d2c0749d1649d42943ee370210.tar.gz
u-boot-84dee33ca81d72d2c0749d1649d42943ee370210.tar.xz
u-boot-84dee33ca81d72d2c0749d1649d42943ee370210.zip
riscv: Drop USE_SPL_FIT_GENERATOR
Now that we have switched to binman to generate u-boot.itb for all RISC-V boards, USE_SPL_FIT_GENERATOR is no longer needed and can be dropped. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig.boot3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot
index 71a215c757..3c6e77d099 100644
--- a/common/Kconfig.boot
+++ b/common/Kconfig.boot
@@ -274,14 +274,13 @@ config SPL_FIT_SOURCE
config USE_SPL_FIT_GENERATOR
bool "Use a script to generate the .its script"
- default y if SPL_FIT && !ARCH_SUNXI
+ default y if SPL_FIT && (!ARCH_SUNXI && !RISCV)
config SPL_FIT_GENERATOR
string ".its file generator script for U-Boot FIT image"
depends on USE_SPL_FIT_GENERATOR
default "arch/arm/mach-rockchip/make_fit_atf.py" if SPL_LOAD_FIT && ARCH_ROCKCHIP
default "arch/arm/mach-zynqmp/mkimage_fit_atf.sh" if SPL_LOAD_FIT && ARCH_ZYNQMP
- default "arch/riscv/lib/mkimage_fit_opensbi.sh" if SPL_LOAD_FIT && RISCV
help
Specifies a (platform specific) script file to generate the FIT
source file used to build the U-Boot FIT image file. This gets