From: Tom Rini Date: Sat, 8 Jun 2019 00:39:32 +0000 (-0400) Subject: spl: Correct SPL_SIZE_LIMIT Kconfig option X-Git-Tag: v2019.07-rc4~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d277fb0ed145f82dd50cc6e99d2fa553a588c3b;p=oweals%2Fu-boot.git 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 Tested-by: Fabio Estevam Fixes: 2577015dc5c4 ("spl: add overall SPL size check") Signed-off-by: Tom Rini --- diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6a98536f20..ac2f470032 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