From d2446957132d818a8f27a149edae5a5115ea901f Mon Sep 17 00:00:00 2001 From: "kenneth.liu" Date: Tue, 25 Feb 2025 14:00:15 +0800 Subject: [PATCH] bsp: cvitek: fix source command spelling in Kconfig [Problem Description] The Kconfig file contained misspelled source commands: - "osource" instead of "source" for packages config inclusion - "rsource" instead of "source" for board config inclusion [Root Cause] Incorrect source command spelling breaks Kconfig processing: 1. "osource" is not a valid Kconfig command 2. "rsource" is not a valid Kconfig command 3. These typos prevent proper configuration inheritance [Solution] Correct the source command spellings: - Change "osource" to standard "source" for packages - Change "rsource" to standard "source" for board - Maintain original configuration hierarchy Signed-off-by: Liu Gui --- bsp/cvitek/c906_little/Kconfig | 4 ++-- bsp/cvitek/cv18xx_risc-v/Kconfig | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bsp/cvitek/c906_little/Kconfig b/bsp/cvitek/c906_little/Kconfig index e3af6c604aa..a307cf09c53 100755 --- a/bsp/cvitek/c906_little/Kconfig +++ b/bsp/cvitek/c906_little/Kconfig @@ -7,8 +7,8 @@ RTT_DIR := ../../.. PKGS_DIR := packages source "$(RTT_DIR)/Kconfig" -osource "$PKGS_DIR/Kconfig" -rsource "board/Kconfig" +source "$PKGS_DIR/Kconfig" +source "board/Kconfig" config BSP_USING_C906_LITTLE bool diff --git a/bsp/cvitek/cv18xx_risc-v/Kconfig b/bsp/cvitek/cv18xx_risc-v/Kconfig index c25f9cb4e02..a48aaf48b53 100755 --- a/bsp/cvitek/cv18xx_risc-v/Kconfig +++ b/bsp/cvitek/cv18xx_risc-v/Kconfig @@ -7,8 +7,8 @@ RTT_DIR := ../../.. PKGS_DIR := packages source "$(RTT_DIR)/Kconfig" -osource "$PKGS_DIR/Kconfig" -rsource "board/Kconfig" +source "$PKGS_DIR/Kconfig" +source "board/Kconfig" config BSP_USING_CV18XX bool