diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2021-08-12 10:10:27 +0200 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2021-09-10 21:31:12 -0700 |
commit | efe1e08bca9a1fab2b0ad886be4fb5335dcbf29c (patch) | |
tree | 951dd7d66225a9928de16248dd005eba8e1032da /arch | |
parent | 3a87ff891290e1b9ef3f03396c22fd3b2f6eb955 (diff) | |
download | linux-stable-efe1e08bca9a1fab2b0ad886be4fb5335dcbf29c.tar.gz linux-stable-efe1e08bca9a1fab2b0ad886be4fb5335dcbf29c.tar.bz2 linux-stable-efe1e08bca9a1fab2b0ad886be4fb5335dcbf29c.zip |
riscv: defconfig: enable NLS_CODEPAGE_437, NLS_ISO8859_1
The EFI system partition uses the FAT file system. Many distributions add
an entry in /etc/fstab for the ESP. We must ensure that mounting does not
fail.
The default code page for FAT is 437 (cf. CONFIG_FAT_DEFAULT_CODEPAGE).
The default IO character set is "iso8859-1" (cf. CONFIG_NLS_ISO8859_1).
So let's enable NLS_CODEPAGE_437 and NLS_ISO8859_1 in defconfig.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/configs/defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/riscv/configs/defconfig b/arch/riscv/configs/defconfig index a7d915a5932e..4ebc80315f01 100644 --- a/arch/riscv/configs/defconfig +++ b/arch/riscv/configs/defconfig @@ -110,6 +110,8 @@ CONFIG_NFS_V4_1=y CONFIG_NFS_V4_2=y CONFIG_ROOT_NFS=y CONFIG_9P_FS=y +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_ISO8859_1=m CONFIG_CRYPTO_USER_API_HASH=y CONFIG_CRYPTO_DEV_VIRTIO=y CONFIG_PRINTK_TIME=y |