diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2020-11-10 11:43:32 +0800 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2020-11-13 18:17:09 +0800 |
commit | 7a9c574cf106583b360a6b66f42706eecba96518 (patch) | |
tree | b50655000f60898c2c2263d501a252f19d9e3501 /arch | |
parent | c180e2939d3ccb43f89565d6660a0d6f912712b6 (diff) | |
download | u-boot-7a9c574cf106583b360a6b66f42706eecba96518.tar.gz u-boot-7a9c574cf106583b360a6b66f42706eecba96518.tar.bz2 u-boot-7a9c574cf106583b360a6b66f42706eecba96518.zip |
rockchip: Enable BINMAN for boards enable SPL_OPTEE
Rockchip has many 32bit SoCs and some of them are support SPL_OPTEE now,
only boards with SPL_OPTEE support can fit BINMAN well, other boards
will fail at initr_binman() in U-Boot proper after below patch,
eg. rv1108 board.
83187546ae binman: Support multiple images in the library
Fixes: 79030a4861 ("rockchip: Add Single boot image (with binman, pad_cat)")
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b2f7fcbd6e..5903c09370 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1721,7 +1721,7 @@ config ARCH_STM32MP config ARCH_ROCKCHIP bool "Support Rockchip SoCs" select BLK - select BINMAN if !ARM64 + select BINMAN if SPL_OPTEE select DM select DM_GPIO select DM_I2C |