From 44e9052ad341a4ca697dba18e0325380e623d050 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Thu, 22 Sep 2016 14:31:11 +0200 Subject: apalis-tk1: fix autoboot not prevented in recovery mode Turns out CONFIG_ARCH_MISC_INIT was not defined therefore our arch_misc_init() function was never even called. While at it also enable the previously missing CONFIG_OF_LIBFDT. Signed-off-by: Marcel Ziswiler Acked-by: Max Krummenacher --- include/configs/apalis-tk1.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/configs/apalis-tk1.h b/include/configs/apalis-tk1.h index d258387cc3..4e3075aec4 100644 --- a/include/configs/apalis-tk1.h +++ b/include/configs/apalis-tk1.h @@ -11,11 +11,13 @@ #include -/* enable PMIC */ -#define CONFIG_AS3722_POWER - #include "tegra124-common.h" +#define CONFIG_ARCH_MISC_INIT + +/* Enable PMIC */ +#define CONFIG_AS3722_POWER + /* High-level configuration options */ #define V_PROMPT "Apalis TK1 # " #define CONFIG_CUSTOM_BOARDINFO /* not from device-tree model node */ @@ -199,6 +201,7 @@ #define CONFIG_CMD_MEMTEST #define CONFIG_SYS_ALT_MEMTEST +#define CONFIG_OF_LIBFDT #define CONFIG_OF_SYSTEM_SETUP #define CONFIG_SUPPORT_RAW_INITRD -- cgit v1.2.3