Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions components/dfs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@ endif
default y

if RT_USING_DFS_V1
config RT_USING_DFS_9PFS
bool "Using Plan 9 remote filesystem"
select RT_USING_ADT_BITMAP
depends on RT_USING_MEMHEAP
default n

config RT_USING_DFS_ISO9660
bool "Using ISO9660 filesystem"
depends on RT_USING_MEMHEAP
Expand Down
11 changes: 11 additions & 0 deletions components/dfs/dfs_v1/filesystems/9pfs/SConscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# RT-Thread building script for component

from building import *

cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]

group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_9PFS'], CPPPATH = CPPPATH)

Return('group')
Loading