diff options
author | Bin Meng | 2021-05-10 20:23:41 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang | 2021-05-19 17:01:51 +0800 |
commit | 84dee33ca81d72d2c0749d1649d42943ee370210 (patch) | |
tree | 53395dbab392213cc8581ddcd20bbc7f4d9b46c3 /common/Kconfig.boot | |
parent | cc269e1c008500430a687427ffabecd330b7f020 (diff) |
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/Kconfig.boot')
-rw-r--r-- | common/Kconfig.boot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 71a215c7575..3c6e77d0997 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 |