add ls2k sata ssd driver

This commit is contained in:
bigmagic
2020-12-29 18:54:12 +08:00
committed by bigmagic
parent eaf3e4795d
commit 68689c7c43
18 changed files with 3280 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if GetDepend('RT_USING_DFS_ELMFAT') == False:
SrcRemove(src, 'dwc_ahsata.c')
SrcRemove(src, 'libata.c')
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')