From 0d2c84d89fe20030537d9c9f71572c837730e198 Mon Sep 17 00:00:00 2001 From: GuEe-GUI <2991707448@qq.com> Date: Wed, 20 Nov 2024 21:40:02 +0800 Subject: [PATCH] [DM/FEATURE] make SoC Kconfig import easy Open Kconfig will not fail if using osource, This way can make SoC Kconfig to DM easy. Link: ecb89b1370ec27be650a0a2fae7c6802b4246933 Signed-off-by: GuEe-GUI <2991707448@qq.com> --- components/drivers/Kconfig.dm | 5 ----- components/drivers/clk/Kconfig | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 components/drivers/Kconfig.dm diff --git a/components/drivers/Kconfig.dm b/components/drivers/Kconfig.dm deleted file mode 100644 index 7d37abb1ee..0000000000 --- a/components/drivers/Kconfig.dm +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# -# This a empty file for SoC DM Kconfig -# -comment "SoC Device Drivers" diff --git a/components/drivers/clk/Kconfig b/components/drivers/clk/Kconfig index 69f95bcee6..c13ccbf259 100755 --- a/components/drivers/clk/Kconfig +++ b/components/drivers/clk/Kconfig @@ -5,5 +5,5 @@ menuconfig RT_USING_CLK default y if RT_USING_CLK - source "$(RTT_DIR)/components/drivers/$(SOC_DM_CLK_DIR)/Kconfig.dm" + osource "$(SOC_DM_CLK_DIR)/Kconfig" endif