From 53bd164690cfabd9dfbce222a5b37e914e676db4 Mon Sep 17 00:00:00 2001 From: zhanchengbin Date: Fri, 15 Jul 2022 18:48:31 +0800 Subject: [PATCH] configs: change the value of NLS_CODEPAGE_437 from m to y hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I5JMOU CVE: NA -------------------------------- if the NLS_CODEPAGE_437.ko does not exist in the bootrom system, but the vfat filesystem depends on the NLS_CODEPAGE_437 module, the /boot/efi fails to be mounted. Change the value of NLS_CODEPAGE_437 from m to y in arch/arm64/configs /openeuler_defconfig and arch/x86/configs/openeuler_defconfig. Signed-off-by: zhanchengbin --- arch/arm64/configs/openeuler_defconfig | 2 +- arch/x86/configs/openeuler_defconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/configs/openeuler_defconfig b/arch/arm64/configs/openeuler_defconfig index 593ac67497e3..ebaff9e0e2d5 100644 --- a/arch/arm64/configs/openeuler_defconfig +++ b/arch/arm64/configs/openeuler_defconfig @@ -6413,7 +6413,7 @@ CONFIG_9P_FS_SECURITY=y CONFIG_EULER_FS=m CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_CODEPAGE_737=m CONFIG_NLS_CODEPAGE_775=m CONFIG_NLS_CODEPAGE_850=m diff --git a/arch/x86/configs/openeuler_defconfig b/arch/x86/configs/openeuler_defconfig index f013c7b95881..750e217e12ad 100644 --- a/arch/x86/configs/openeuler_defconfig +++ b/arch/x86/configs/openeuler_defconfig @@ -7499,7 +7499,7 @@ CONFIG_CIFS_DFS_UPCALL=y CONFIG_EULER_FS=m CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" -CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_CODEPAGE_737=m CONFIG_NLS_CODEPAGE_775=m CONFIG_NLS_CODEPAGE_850=m -- Gitee