c424cb8186
1. Disk and blk device management. 2. Support partitions probe auto. 3. Support DFS and user mode fops, ioctl. 4. Add a cmd for blk info. Signed-off-by: GuEe-GUI <2991707448@qq.com>
19 lines
321 B
Python
19 lines
321 B
Python
from building import *
|
|
|
|
group = []
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../../include']
|
|
|
|
src = []
|
|
|
|
if GetDepend(['RT_BLK_PARTITION_DFS']):
|
|
src += ['dfs.c']
|
|
|
|
if GetDepend(['RT_BLK_PARTITION_EFI']):
|
|
src += ['efi.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|