summaryrefslogtreecommitdiffstats
path: root/fs/udf/Kconfig
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2018-04-11 12:27:27 +0200
committerJan Kara <jack@suse.cz>2018-04-19 16:00:48 +0200
commitb8333ea1adf08c5ccc3790403f0d1053e1b49f62 (patch)
tree6af69d35713f70309d6d8bd4484d7b2d111e50c9 /fs/udf/Kconfig
parent44f06ba8297c7e9dfd0e49b40cbe119113cca094 (diff)
downloadlinux-stable-b8333ea1adf08c5ccc3790403f0d1053e1b49f62.tar.gz
linux-stable-b8333ea1adf08c5ccc3790403f0d1053e1b49f62.tar.bz2
linux-stable-b8333ea1adf08c5ccc3790403f0d1053e1b49f62.zip
udf: Always require NLS support
UDF needs to convert strings between OSTA CS0 charset and standard UTF8. Currently we implement our own utf-16 <-> utf-8 translations which is unnecessary code duplication. Always select NLS so that we can use translation functions from there. Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/Kconfig')
-rw-r--r--fs/udf/Kconfig6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/udf/Kconfig b/fs/udf/Kconfig
index c6e17a744c3b..aa415054ad0a 100644
--- a/fs/udf/Kconfig
+++ b/fs/udf/Kconfig
@@ -1,6 +1,7 @@
config UDF_FS
tristate "UDF file system support"
select CRC_ITU_T
+ select NLS
help
This is a file system used on some CD-ROMs and DVDs. Since the
file system is supported by multiple operating systems and is more
@@ -13,8 +14,3 @@ config UDF_FS
module will be called udf.
If unsure, say N.
-
-config UDF_NLS
- bool
- default y
- depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y)