From e87dfb0526be231de89b299531a0e637d343fccd Mon Sep 17 00:00:00 2001 From: Andrii Anisov Date: Thu, 6 Aug 2020 12:42:52 +0300 Subject: lib: sscanf: add sscanf implementation Port sscanf implementation from mini-os and introduce new Kconfig option to enable it: CONFIG_SSCANF. Disable by default. Signed-off-by: Andrii Anisov Signed-off-by: Anastasiia Lukianenko Signed-off-by: Oleksandr Andrushchenko --- lib/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index 1dc06c5..0cd7bea 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -123,6 +123,7 @@ else # Main U-Boot always uses the full printf support obj-y += vsprintf.o strto.o obj-$(CONFIG_OID_REGISTRY) += oid_registry.o +obj-$(CONFIG_SSCANF) += sscanf.o endif obj-y += date.o -- cgit v1.1