diff options
| author | Simon Glass <[email protected]> | 2021-07-02 12:36:17 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-07-28 14:27:54 -0400 |
| commit | 1a46cb6c7e1860c8dfdfadbb2e3ac708edc5d388 (patch) | |
| tree | 8f51a51f51e3d275c1950b5b002961ccc744185f /lib/Kconfig | |
| parent | 6e3c6544c72b0b801b30b10ce2234b4e9fc2ae08 (diff) | |
lib: Create a new Kconfig option for charset conversion
Rather than looking at two KConfig options in the Makefile, create a new
Kconfig option for compiling lib/charset.c
Enable it for UFS also, which needs this support.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib/Kconfig')
| -rw-r--r-- | lib/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index ad4d75e0a40..fdcf7ea4050 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -40,6 +40,14 @@ config CC_OPTIMIZE_LIBS_FOR_SPEED If unsure, say N. +config CHARSET + bool + default y if UT_UNICODE || EFI_LOADER || UFS + help + Enables support for various conversions between different + character sets, such as between unicode representations and + different 'code pages'. + config DYNAMIC_CRC_TABLE bool "Enable Dynamic tables for CRC" help |
