diff options
| author | Pragnesh Patel <[email protected]> | 2020-05-29 11:33:23 +0530 |
|---|---|---|
| committer | Andes <[email protected]> | 2020-06-04 09:44:08 +0800 |
| commit | bbb94af981ad63c0dd9ab86e25c195c3cbc9a0e6 (patch) | |
| tree | 04fad50df4542e3bcfebad527ea15018e8260fe8 | |
| parent | 88eec6159ad269ce733b7ca32341d4f19b1d7fc9 (diff) | |
riscv: Add _image_binary_end for SPL
For SPL_SEPARATE_BSS, Device tree will be put at _image_binary_end
Signed-off-by: Pragnesh Patel <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Tested-by: Bin Meng <[email protected]>
Tested-by: Jagan Teki <[email protected]>
| -rw-r--r-- | arch/riscv/cpu/u-boot-spl.lds | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/cpu/u-boot-spl.lds b/arch/riscv/cpu/u-boot-spl.lds index 955dd3106dc..d0495ce2486 100644 --- a/arch/riscv/cpu/u-boot-spl.lds +++ b/arch/riscv/cpu/u-boot-spl.lds @@ -72,6 +72,7 @@ SECTIONS . = ALIGN(4); _end = .; + _image_binary_end = .; .bss : { __bss_start = .; |
