modules: mipi-syst: support minimal C library
This allows the MIPI Sys-T library to be built with minimal C library. This is due to lack of support for wchar in our minimal C library. This simply tells the library to skip any wchar support. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
339b00de11
commit
2ba7855ddf
|
@ -3,7 +3,6 @@
|
|||
|
||||
config MIPI_SYST_LIB
|
||||
bool "MIPI SyS-T Library Support"
|
||||
select REQUIRES_FULL_LIBC
|
||||
help
|
||||
This option enables the MIPI SyS-T Library
|
||||
|
||||
|
@ -20,4 +19,11 @@ config MIPI_SYST_RAW_DATA
|
|||
help
|
||||
This option outputs MIPI SyS-T raw data packet
|
||||
|
||||
config MIPI_SYST_NO_WHCAR
|
||||
bool
|
||||
default y if MINIMAL_LIBC
|
||||
help
|
||||
Tell MIPI Sys-T library to not build with
|
||||
wchar support.
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue