2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2019-04-25 17:38:44 +00:00
|
|
|
#
|
|
|
|
# UTF-8 normalization
|
|
|
|
#
|
|
|
|
config UNICODE
|
|
|
|
bool "UTF-8 normalization and casefolding support"
|
|
|
|
help
|
|
|
|
Say Y here to enable UTF-8 NFD normalization and NFD+CF casefolding
|
|
|
|
support.
|
2019-04-25 17:56:01 +00:00
|
|
|
|
2021-09-15 07:00:05 +00:00
|
|
|
config UNICODE_UTF8_DATA
|
|
|
|
tristate "UTF-8 normalization and casefolding tables"
|
|
|
|
depends on UNICODE
|
|
|
|
default UNICODE
|
|
|
|
help
|
|
|
|
This contains a large table of case foldings, which can be loaded as
|
|
|
|
a separate module if you say M here. To be on the safe side stick
|
|
|
|
to the default of Y. Saying N here makes no sense, if you do not want
|
|
|
|
utf8 casefolding support, disable CONFIG_UNICODE instead.
|
|
|
|
|
2019-04-25 17:56:01 +00:00
|
|
|
config UNICODE_NORMALIZATION_SELFTEST
|
|
|
|
tristate "Test UTF-8 normalization support"
|
2021-09-15 07:00:05 +00:00
|
|
|
depends on UNICODE_UTF8_DATA
|