Skip to content

Commit 738ff3c

Browse files
committed
[DFS/FEATURE] Support ISO9660
1. Not support link. 2. Fixup the DFS open flag with readonly. Link: #9270 Signed-off-by: GuEe-GUI <[email protected]>
1 parent e7b1653 commit 738ff3c

File tree

5 files changed

+733
-2
lines changed

5 files changed

+733
-2
lines changed

components/dfs/Kconfig

+7
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,13 @@ endif
162162
bool "Using devfs for device objects"
163163
default y
164164

165+
if RT_USING_DFS_V1
166+
config RT_USING_DFS_ISO9660
167+
bool "Using ISO9660 filesystem"
168+
depends on RT_USING_MEMHEAP
169+
default n
170+
endif
171+
165172
config RT_USING_DFS_ROMFS
166173
bool "Enable ReadOnly file system on flash"
167174
default n
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# RT-Thread building script for component
2+
3+
from building import *
4+
5+
cwd = GetCurrentDir()
6+
src = Glob('*.c')
7+
CPPPATH = [cwd]
8+
9+
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_ISO9660'], CPPPATH = CPPPATH)
10+
11+
Return('group')

0 commit comments

Comments
 (0)