[libcpu][asm9260t] Add new BSP for AlphaScale ASM9260T

This commit is contained in:
ardafu
2015-05-04 16:30:05 +08:00
parent cc6b290640
commit 9f36fd61a4
45 changed files with 6244 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')