Skip to content

Commit d244695

Browse files
committed
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 <[email protected]>
1 parent 75722c4 commit d244695

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bsp/cvitek/c906_little/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ RTT_DIR := ../../..
77
PKGS_DIR := packages
88

99
source "$(RTT_DIR)/Kconfig"
10-
osource "$PKGS_DIR/Kconfig"
11-
rsource "board/Kconfig"
10+
source "$PKGS_DIR/Kconfig"
11+
source "board/Kconfig"
1212

1313
config BSP_USING_C906_LITTLE
1414
bool

bsp/cvitek/cv18xx_risc-v/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ RTT_DIR := ../../..
77
PKGS_DIR := packages
88

99
source "$(RTT_DIR)/Kconfig"
10-
osource "$PKGS_DIR/Kconfig"
11-
rsource "board/Kconfig"
10+
source "$PKGS_DIR/Kconfig"
11+
source "board/Kconfig"
1212

1313
config BSP_USING_CV18XX
1414
bool

0 commit comments

Comments
 (0)