From 95896627f590b1304821cadb6dcc39a502d6f7c9 Mon Sep 17 00:00:00 2001 From: wu-leilei Date: Sat, 15 Jul 2023 17:43:00 +0800 Subject: [PATCH] kconfig: Add CONFIG_LZ4_COMPRESS and CONFIG_DRM_GUD option for x86_64 architecture. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit openeuler inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I7LM8U Reference: https://gitee.com/src-openeuler/kernel/pulls/933 -------------------------------------------------------- issue causes: Module lz4_compress.o will not be compiled into the kernel unless option CONFIG_LZ4_COMPRESS setted to 'y' or 'm'. When kernel does not provide the lz4_compress module, kmod-kvdo will not find the missing symbols LZ4_compress_default. Solution: Add CONFIG_LZ4_COMPRESS and CONFIG_DRM_GUD option for x86_64 architecture. Signed-off-by: wu-leilei Signed-off-by: cherry530 <707078654@qq.com> --- arch/x86/configs/openeuler_defconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/x86/configs/openeuler_defconfig b/arch/x86/configs/openeuler_defconfig index 6bc7626016d9..0e05e7a15fdb 100644 --- a/arch/x86/configs/openeuler_defconfig +++ b/arch/x86/configs/openeuler_defconfig @@ -5465,7 +5465,7 @@ CONFIG_DRM_CIRRUS_QEMU=m # CONFIG_TINYDRM_ST7735R is not set # CONFIG_DRM_XEN_FRONTEND is not set # CONFIG_DRM_VBOXVIDEO is not set -# CONFIG_DRM_GUD is not set +CONFIG_DRM_GUD=m # CONFIG_DRM_SSD130X is not set # CONFIG_DRM_HYPERV is not set # CONFIG_DRM_LEGACY is not set @@ -8622,6 +8622,7 @@ CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m CONFIG_LZ4_DECOMPRESS=y CONFIG_ZSTD_COMMON=y CONFIG_ZSTD_COMPRESS=y -- Gitee