Ubiquitous/RT-Thread_Fusion_XiUOS/: add romfs function

This commit is contained in:
chunyexixiaoyu
2022-04-29 15:33:55 +08:00
parent c271cd16ea
commit f3d7e7e3d4
6 changed files with 48 additions and 3 deletions
@@ -15,6 +15,9 @@ if GetDepend('BSP_USING_PHY') and GetDepend('PHY_USING_8720A'):
src += ['./ports/LAN8720A.c']
if GetDepend('BSP_USING_SDCARD'):
src += ['./ports/sdcard_port.c']
if GetDepend(['RT_USING_DFS_ROMFS']):
src += ['ports/romfs.c']
src += ['ports/mnt_romfs.c']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES)
Return('group')