[U-Boot] [PATCH] spl: Correct SPL_SIZE_LIMIT Kconfig option

When introduced this limit was an int but was then changed to hex without noting as much in the prompt nor changing existing users. Put this back to an int.
Reported-by: Fabio Estevam festevam@gmail.com Fixes: 2577015dc5c4 ("spl: add overall SPL size check") Signed-off-by: Tom Rini trini@konsulko.com --- common/spl/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6a98536f2083..ac2f470032d8 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -26,7 +26,7 @@ config SPL_FRAMEWORK and the Linux Kernel. If unsure, say Y.
config SPL_SIZE_LIMIT - hex "Maximum size of SPL image" + int "Maximum size of SPL image" depends on SPL default 0 help

On Fri, Jun 7, 2019 at 9:41 PM Tom Rini trini@konsulko.com wrote:
When introduced this limit was an int but was then changed to hex without noting as much in the prompt nor changing existing users. Put this back to an int.
Reported-by: Fabio Estevam festevam@gmail.com Fixes: 2577015dc5c4 ("spl: add overall SPL size check") Signed-off-by: Tom Rini trini@konsulko.com
Thanks for the fix:
Tested-by: Fabio Estevam festevam@gmail.com

On Fri, Jun 07, 2019 at 08:41:00PM -0400, Tom Rini wrote:
When introduced this limit was an int but was then changed to hex without noting as much in the prompt nor changing existing users. Put this back to an int.
Reported-by: Fabio Estevam festevam@gmail.com Tested-by: Fabio Estevam festevam@gmail.com Fixes: 2577015dc5c4 ("spl: add overall SPL size check") Signed-off-by: Tom Rini trini@konsulko.com
Applied to u-boot/master, thanks!
participants (2)
-
Fabio Estevam
-
Tom Rini