commit | a76a4585682b0095ba6eb277562b278249862c94 | [log] [tgz] |
---|---|---|
author | Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> | Thu Apr 25 21:22:39 2019 +0200 |
committer | Tom Rini <trini@konsulko.com> | Sun May 05 08:48:50 2019 -0400 |
tree | d35522cb3804e13e5ed2912e0dc9a7df8c2d580a | |
parent | 41e3296656c33b7ac2538b51469b881eb42f1ff9 [diff] |
spl: fix linker size check off-by-one errors 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 <simon.k.r.goldschmidt@gmail.com>