diff options
author | Mans Rullgard | 2018-04-21 16:11:10 +0100 |
---|---|---|
committer | Stefano Babic | 2018-04-27 09:32:54 +0200 |
commit | 07a8f79ee850b1e59371519f179d32fea171bbec (patch) | |
tree | 304e4c84f19097badaa4c998e04d7f01b5ea26bf /include/configs/mxs.h | |
parent | 33ea119382d820294e22bc99c4ea32cb5fac1a71 (diff) |
ARM: mxs: support full SPL framework
This allows using the full SPL framework on mxs devices. In this
mode, the u-boot.sb image loaded by the boot ROM contains only the
SPL which then loads U-Boot proper or a kernel in falcon mode.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'include/configs/mxs.h')
-rw-r--r-- | include/configs/mxs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/mxs.h b/include/configs/mxs.h index f07f81c8415..0fe0770e13f 100644 --- a/include/configs/mxs.h +++ b/include/configs/mxs.h @@ -44,8 +44,10 @@ /* Startup hooks */ /* SPL */ +#ifndef CONFIG_SPL_FRAMEWORK #define CONFIG_SPL_NO_CPU_SUPPORT_CODE #define CONFIG_SPL_START_S_PATH "arch/arm/cpu/arm926ejs/mxs" +#endif /* Memory sizes */ #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */ |