diff options
author | Michael Walle <michael@walle.cc> | 2022-08-17 21:38:03 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2022-08-23 12:40:00 +0200 |
commit | aa088beac3aca0dd9b40f60b0b1e5ab1c6bae471 (patch) | |
tree | da2301642ea5125cc825405c263b443f11dc86cd /arch/arm/mach-kirkwood | |
parent | 18794c192a755147c9f3f86915a6a52cbd9f4017 (diff) | |
download | u-boot-aa088beac3aca0dd9b40f60b0b1e5ab1c6bae471.tar.gz u-boot-aa088beac3aca0dd9b40f60b0b1e5ab1c6bae471.tar.bz2 u-boot-aa088beac3aca0dd9b40f60b0b1e5ab1c6bae471.zip |
board: lsxl: make last resort recovery more reliable
If something is wrong with the environment, we cannot rely on a proper
u-boot operation anymore. In fact, it is possible, that we never reach
misc_init_r() with a broken environment.
Also don't enable the netconsole by environment settings. This way the
user don't have to reconfigure the environment. Instead the network
console is only enabled when the push button is pressed during boot.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/arm/mach-kirkwood')
-rw-r--r-- | arch/arm/mach-kirkwood/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/Kconfig b/arch/arm/mach-kirkwood/Kconfig index f5460f3bd3..c8a193dd4c 100644 --- a/arch/arm/mach-kirkwood/Kconfig +++ b/arch/arm/mach-kirkwood/Kconfig @@ -45,6 +45,7 @@ config TARGET_LSXL bool "lsxl Board" select FEROCEON_88FR131 select KW88F6281 + select BOARD_EARLY_INIT_R select MISC_INIT_R config TARGET_POGO_E02 |