
Hi Bruno,
On Tue, Mar 12, 2019 at 1:58 PM Bruno Thomsen bruno.thomsen@gmail.com wrote:
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 8631fbd481..0335c0e8db 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -46,7 +46,7 @@ config SECURE_BOOT config CMD_BMODE bool "Support the 'bmode' command" default y
depends on ARCH_MX6 || ARCH_MX5
depends on ARCH_MX7 || ARCH_MX6 || ARCH_MX5
This should be a separate patch.
help This enables the 'bmode' (bootmode) command for forcing a boot from specific media.
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 6b83f92662..113f228c86 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -251,7 +251,7 @@ int cpu_eth_init(bd_t *bis) { int rc = -ENODEV;
-#if defined(CONFIG_FEC_MXC) +#if defined(CONFIG_FEC_MXC) && defined(CONFIG_FEC_MXC_PHYADDR)
This one too.
Also, please consider converting this board to DM.