From 5b7fa0c025f56a98aed918c9ba84aaa9a731f6ae Mon Sep 17 00:00:00 2001 From: Yizhen Fan Date: Thu, 12 Oct 2023 20:02:27 +0800 Subject: [PATCH] ub: change default Kconfig to n, and depends on arm64 driver inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I87OZH CVE: NA -------------------------------- Change kconfig of urma to default close. And only support compiling on aarch64 Signed-off-by: Guoxin Qian Signed-off-by: Yizhen Fan --- drivers/ub/Kconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/ub/Kconfig b/drivers/ub/Kconfig index 404d2bc22413..6e0cf0df8a94 100644 --- a/drivers/ub/Kconfig +++ b/drivers/ub/Kconfig @@ -2,7 +2,10 @@ menuconfig UB tristate "Unified Bus (UB) support" - default m + depends on ARM64 + default n help Core support for Unified Bus (UB). + Currently it only support arm64 structure. + Default option is close. To compile UB core as module, choose M here. -- Gitee