[BSP]add BSP for Winner Micro W60X devices。

This commit is contained in:
Wenlong.Fan
2019-03-27 17:50:48 +08:00
parent d7f849c879
commit 7b7ca405b0
61 changed files with 12519 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# for module compiling
import os
Import('RTT_ROOT')
cwd = str(Dir('#'))
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')