Message ID | 20200117124616.24695-5-pragnesh.patel@sifive.com |
---|---|
State | Superseded |
Headers | show |
Series | RISC-V SiFive FU540 support SPL | expand |
On Fri, Jan 17, 2020 at 6:17 PM Pragnesh Patel <pragnesh.patel at sifive.com> wrote: > > For SPL_SEPARATE_BSS, Device tree will put at _image_binary_end > > Signed-off-by: Pragnesh Patel <pragnesh.patel at sifive.com> > --- > arch/riscv/cpu/u-boot-spl.lds | 1 + > 1 file changed, 1 insertion(+) > > 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 = .; > -- > 2.17.1 > LGTM. Reviewed-by: Anup Patel <anup.patel at wdc.com> Regards, Anup
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 = .;
For SPL_SEPARATE_BSS, Device tree will put at _image_binary_end Signed-off-by: Pragnesh Patel <pragnesh.patel at sifive.com> --- arch/riscv/cpu/u-boot-spl.lds | 1 + 1 file changed, 1 insertion(+)