aboutsummaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2018-04-19 04:32:54 +0000
committerTom Rini <trini@konsulko.com>2018-04-28 18:32:23 -0400
commit14ad44ab466a8f4630c603f4c0bb5c57d0f27ae6 (patch)
tree4dca5b875ad778a2d4862804ff89b66175cd6aa5 /lib/Kconfig
parentd4bb3b376223c72b49c3a2bdcce896557d997e6b (diff)
downloadu-boot-14ad44ab466a8f4630c603f4c0bb5c57d0f27ae6.zip
u-boot-14ad44ab466a8f4630c603f4c0bb5c57d0f27ae6.tar.gz
u-boot-14ad44ab466a8f4630c603f4c0bb5c57d0f27ae6.tar.bz2
spl: Split sprintf, strto* from SPL serial in Kconfig
When SPL serial is disabled, callers who need sprintf or strtoul fail because their inclusion is guarded by CONFIG_SPL_SERIAL_SUPPORT/ CONFIG_TPL_SERIAL_SUPPORT. Split printf, sprintf and strto into their own entries and then select all of them if SERIAL_SUPPORT is enabled to match the current behaviour. Include panic.o unconditionally as it can be called from anywhere which uses BUG_ON(). Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 436b90f..33fb067 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -27,6 +27,40 @@ config HAVE_PRIVATE_LIBGCC
config LIB_UUID
bool
+config PRINTF
+ bool
+ default y
+
+config SPL_PRINTF
+ bool
+ select SPL_SPRINTF
+ select SPL_STRTO if !USE_TINY_PRINTF
+
+config TPL_PRINTF
+ bool
+ select TPL_SPRINTF
+ select TPL_STRTO if !USE_TINY_PRINTF
+
+config SPRINTF
+ bool
+ default y
+
+config SPL_SPRINTF
+ bool
+
+config TPL_SPRINTF
+ bool
+
+config STRTO
+ bool
+ default y
+
+config SPL_STRTO
+ bool
+
+config TPL_STRTO
+ bool
+
config USE_PRIVATE_LIBGCC
bool "Use private libgcc"
depends on HAVE_PRIVATE_LIBGCC