Skip to content

Commit d1cabcd

Browse files
authored
Merge branch 'RT-Thread:master' into master
2 parents aba90ef + c4d7a8a commit d1cabcd

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

MAINTAINERS

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,17 @@
3838
# path: example/module/path
3939
# owners: John Doe(johndoe)<[email protected]>, Jane Smith(janesmith)<[email protected]>
4040

41-
# Note:
41+
# Note:
4242
# - Each entry includes a `tag` that identifies the module or functionality, a `path` that points to the relevant code location, and `owners` who are the maintainers for that part of the codebase.
4343
# - If there are multiple entries, each entry should be separated by a blank line. Within a single entry, there is no need to insert blank lines between the tag, path, and owners.
4444
# - Each entry must be sorted in alphabetical order with tag as the keyword.
4545

4646
# Below are existing maintainer entries, divided by module:
4747

48+
tag: at
49+
path: components/net/at
50+
owners: Chen Beidou(Ryan-CW-Code)<[email protected]>
51+
4852
tag: bsp_cvitek
4953
path: bsp/cvitek
5054
owners: Chen Wang(unicornx)<[email protected]>
@@ -57,10 +61,18 @@ tag: bsp_gd32470z-lckfb
5761
path: bsp/gd32/arm/gd32470z-lckfb
5862
owners: Wu Ying Xiang(godmial)<[email protected]>
5963

64+
tag: bsp_gd32e503v-eval
65+
path: bsp/gd32/arm/gd32e503v-eval
66+
owners: 蒙蒙plus(meng-plus)<[email protected]>
67+
6068
tag: bsp_k230
6169
path: bsp/k230
6270
owners: Chen Wang(unicornx)<[email protected]>
6371

72+
tag: bsp_lpc4088
73+
path: bsp/nxp/lpc/lpc408x
74+
owners: 蒙蒙plus(meng-plus)<[email protected]>
75+
6476
tag: bsp_mcxa
6577
path: bsp/nxp/mcx/mcxa
6678
owners: 下里巴人(hywing)<[email protected]>
@@ -174,7 +186,7 @@ tag: serial_v2
174186
path: components/drivers/serial/dev_serial_v2.c
175187
path: components/drivers/include/drivers/dev_serial_v2.h
176188
path: examples/utest/testcases/drivers/serial_v2
177-
owners: Chen Bei Dou(Ryan-CW-Code)<[email protected]>
189+
owners: Chen Beidou(Ryan-CW-Code)<[email protected]>
178190

179191
tag: workflow
180192
path: .github

bsp/wch/risc-v/tools/sdk_dist.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ def dist_do_building(BSP_ROOT, dist_dir):
1414
print("=> copy ch32 bsp library")
1515
library_dir = os.path.join(dist_dir, 'Libraries')
1616
library_path = os.path.join(os.path.dirname(BSP_ROOT), 'Libraries')
17-
bsp_copy_files(os.path.join(library_path, rtconfig.BSP_LIBRARY_TYPE), os.path.join(library_dir, rtconfig.BSP_LIBRARY_TYPE))
18-
17+
if rtconfig.BSP_LIBRARY_TYPE is not None:
18+
bsp_copy_files(os.path.join(library_path, rtconfig.BSP_LIBRARY_TYPE),
19+
os.path.join(library_dir, rtconfig.BSP_LIBRARY_TYPE))
1920
print("=> copy bsp drivers")
2021
bsp_copy_files(os.path.join(library_path, 'ch32_drivers'), os.path.join(library_dir, 'ch32_drivers'))
2122
shutil.copyfile(os.path.join(library_path, 'Kconfig'), os.path.join(library_dir, 'Kconfig'))

0 commit comments

Comments
 (0)