Skip to content

Commit bb747bc

Browse files
committed
[components][dfs_v2]: Add NFS
Already PRed with RT-Thread#10055, but has not been merged. Signed-off-by: Wang Chen <unicorn_wang@outlook.com>
1 parent 6f3829a commit bb747bc

26 files changed

+8744
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# RT-Thread building script for component
2+
3+
from building import *
4+
5+
cwd = GetCurrentDir()
6+
src = Glob('*.c') + Glob('rpc/*.c')
7+
CPPPATH = [cwd]
8+
9+
SrcRemove(src, ['rpc/auth_none.c'])
10+
11+
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH)
12+
13+
Return('group')

0 commit comments

Comments
 (0)