[U-Boot] [PATCH v5 1/2] spl: fix linker size check off-by-one errors

2019-04-25 Thread Simon Goldschmidt
This fixes SPL linker script size checks for 3 lds files where the size checks were implemented as "x < YYY_MAX_SIZE". Fix the size checks to be "x <= YYY_MAX_SIZE" instead. Signed-off-by: Simon Goldschmidt --- Changes in v5: - added patch to fix linker size checks off-by-one error arch/arm/c

Re: [U-Boot] [PATCH v5 1/2] spl: fix linker size check off-by-one errors

2019-04-27 Thread Simon Goldschmidt
On 25.04.19 21:22, Simon Goldschmidt wrote: This fixes SPL linker script size checks for 3 lds files where the size checks were implemented as "x < YYY_MAX_SIZE". Fix the size checks to be "x <= YYY_MAX_SIZE" instead. After updating Ubuntu to 19.04 today, the new 8.3 gcc makes smartweb_defc

Re: [U-Boot] [PATCH v5 1/2] spl: fix linker size check off-by-one errors

2019-05-06 Thread Tom Rini
On Thu, Apr 25, 2019 at 09:22:39PM +0200, Simon Goldschmidt wrote: > This fixes SPL linker script size checks for 3 lds files where the size > checks were implemented as "x < YYY_MAX_SIZE". > > Fix the size checks to be "x <= YYY_MAX_SIZE" instead. > > Signed-off-by: Simon Goldschmidt Applied