On 10:12 Thu 14 Feb     , Sascha Hauer wrote:
> This decreases the pbl image size by the size of the bss segment.
> 
> Signed-off-by: Sascha Hauer <[email protected]>
> ---
>  arch/arm/pbl/zbarebox.lds.S |   12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/pbl/zbarebox.lds.S b/arch/arm/pbl/zbarebox.lds.S
> index 564b3c6..2914fdd 100644
> --- a/arch/arm/pbl/zbarebox.lds.S
> +++ b/arch/arm/pbl/zbarebox.lds.S
> @@ -59,18 +59,18 @@ SECTIONS
>       .data : { *(.data*) }
>  
>       . = ALIGN(4);
> -     __bss_start = .;
> -     .bss : { *(.bss*) }
> -     __bss_stop = .;
> -     _end = .;
> -
> -     . = ALIGN(4);
>       __piggydata_start = .;
>       .piggydata : {
>               *(.piggydata)
>       }
>       __piggydata_end = .;
>  
> +     . = ALIGN(4);
> +     __bss_start = .;
> +     .bss : { *(.bss*) }
> +     __bss_stop = .;
> +     _end = .;

I did this on purpose

so we can load the pbl in sram without the piggydata

so do not change it

Best Regards,
J.
> +
>       _barebox_image_size = __piggydata_end - (TEXT_BASE - SZ_2M);
>       _barebox_pbl_size = __bss_start - (TEXT_BASE - SZ_2M);
>  }
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> barebox mailing list
> [email protected]
> http://lists.infradead.org/mailman/listinfo/barebox

_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to