Skip to content

Commit bd363be

Browse files
GuEe-GUI1078249029
authored andcommitted
[DM/FEATURE] Support SCSI bus (RT-Thread#9592)
* [DM/FEATURE] Support block for SCSI 1. Support SD and CD-ROM. 2. SD will port to UFS and ATA device. Signed-off-by: GuEe-GUI <[email protected]>
1 parent c2197ce commit bd363be

File tree

13 files changed

+2296
-2
lines changed

13 files changed

+2296
-2
lines changed

components/dfs/Kconfig

Lines changed: 7 additions & 0 deletions
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
Lines changed: 11 additions & 0 deletions
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)