
15 May
2017
15 May
'17
5:52 p.m.
CONFIG_SPL_BOARD_INIT is used for SPL boot. It is only defined for secure boot at this moment. Define it in board header file for SPL build.
Signed-off-by: York Sun york.sun@nxp.com ---
include/configs/ls1046a_common.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/ls1046a_common.h b/include/configs/ls1046a_common.h index 957ffd3..ffa1c78 100644 --- a/include/configs/ls1046a_common.h +++ b/include/configs/ls1046a_common.h @@ -9,6 +9,7 @@
/* SPL build */ #ifdef CONFIG_SPL_BUILD +#define CONFIG_SPL_BOARD_INIT #define SPL_NO_QBMAN #define SPL_NO_FMAN #define SPL_NO_ENV
--
2.7.4