From e627850442cf135bfe7c4a484ac255bf78b53977 Mon Sep 17 00:00:00 2001 From: xuxin19 Date: Thu, 19 Sep 2024 10:12:43 +0800 Subject: [PATCH] build(bugfix):ensure compatibility between kconfig-frontend and kconfiglib in kernel build Because kconfiglib recognizes MODULE configuration but not modules attributes, and kconfig-frontend is compatible with the latest modules attributes of Linux, we can only use the old version to use MODULE configuration plus options modules to be compatible with both. Signed-off-by: xuxin19 --- Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/Kconfig b/Kconfig index 5fb1892547..305ab99027 100644 --- a/Kconfig +++ b/Kconfig @@ -275,6 +275,7 @@ config BASE_DEFCONFIG config MODULES bool + option modules ---help--- Automatically selected if KERNEL build is selected. This selection marks the implementation of Kconfig