diff options
author | Pragnesh Patel <pragnesh.patel@sifive.com> | 2020-05-29 11:33:23 +0530 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2020-06-04 09:44:08 +0800 |
commit | bbb94af981ad63c0dd9ab86e25c195c3cbc9a0e6 (patch) | |
tree | 04fad50df4542e3bcfebad527ea15018e8260fe8 /arch | |
parent | 88eec6159ad269ce733b7ca32341d4f19b1d7fc9 (diff) | |
download | u-boot-bbb94af981ad63c0dd9ab86e25c195c3cbc9a0e6.tar.gz u-boot-bbb94af981ad63c0dd9ab86e25c195c3cbc9a0e6.tar.bz2 u-boot-bbb94af981ad63c0dd9ab86e25c195c3cbc9a0e6.zip |
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 <pragnesh.patel@sifive.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'arch')
-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 955dd3106d..d0495ce248 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 = .; |