
16 Jan
2017
16 Jan
'17
3:04 p.m.
Set up the 64-bit U-Boot text base if building for that target.
Signed-off-by: Simon Glass sjg@chromium.org Reviewed-by: Bin Meng bmeng.cn@gmail.com ---
Changes in v3: None Changes in v2: None
board/google/chromebook_link/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/board/google/chromebook_link/Kconfig b/board/google/chromebook_link/Kconfig index fa12f338de5..5c57945d77a 100644 --- a/board/google/chromebook_link/Kconfig +++ b/board/google/chromebook_link/Kconfig @@ -13,7 +13,8 @@ config SYS_CONFIG_NAME default "chromebook_link"
config SYS_TEXT_BASE - default 0xfff00000 + default 0xfff00000 if !SUPPORT_SPL + default 0x10000000 if SUPPORT_SPL
config BOARD_SPECIFIC_OPTIONS # dummy def_bool y
--
2.11.0.483.g087da7b7c-goog