
Hi Simon,
On 1/23/23 22:59, Simon Glass wrote:
Presumably this should be ARMADA_3700. Fix it.
No. Please see below.
Signed-off-by: Simon Glass sjg@chromium.org
arch/arm/mach-mvebu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile index a23511b113b..1a9dfc047c9 100644 --- a/arch/arm/mach-mvebu/Makefile +++ b/arch/arm/mach-mvebu/Makefile @@ -35,7 +35,7 @@ endif
extra-y += kwbimage.cfg
-ifneq ($(CONFIG_ARMADA_370)$(CONFIG_ARMADA_XP),) +ifneq ($(CONFIG_ARMADA_3700)$(CONFIG_ARMADA_XP),) KWB_REPLACE += CPU KWB_CFG_CPU = SHEEVA else ifneq ($(CONFIG_ARMADA_375)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X),)
Armada 370 is an older 32bit Marvell SoC and not Armada 3700. Still you have detected a problem with CONFIG_ARMADA_370. AFAICT, it's not referenced anywhere else in the code. So please remove this reference instead of changing it to 3700.
Thanks, Stefan