diff options
| author | Simon Glass <[email protected]> | 2017-01-16 07:04:22 -0700 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2017-02-07 13:10:53 +0800 |
| commit | 19f8b32cea3021b116ad196eb0194af22532fcd8 (patch) | |
| tree | e9caeffecd6bc8ba1a50b575fbfd6cb05a4b03cd | |
| parent | c780069f1e3ff6a6613a1aaae5668a35164532c7 (diff) | |
x86: link: Add a text base for 64-bit U-Boot
Set up the 64-bit U-Boot text base if building for that target.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
| -rw-r--r-- | board/google/chromebook_link/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
