Commit d244695
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
2 files changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
0 commit comments