Ubiquitous/RT-Thread_Fusion_XiUOS/:add xidatong-riscv64 bsp

This commit is contained in:
chunyexixiaoyu
2022-07-12 17:29:41 +08:00
parent a6a50a06a0
commit 229749707f
35 changed files with 5102 additions and 0 deletions
@@ -0,0 +1,13 @@
import os
from building import *
cwd = GetCurrentDir()
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')