27 lines
619 B
Python
27 lines
619 B
Python
# RT-Thread building script for bridge
|
|
|
|
import os
|
|
from building import *
|
|
|
|
Import('rtconfig')
|
|
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
list = os.listdir(cwd)
|
|
|
|
# add common code files
|
|
if rtconfig.VENDOR == "t-head" :
|
|
group = group
|
|
elif rtconfig.CPU == "nuclei" :
|
|
group = group
|
|
else :
|
|
group = group + SConscript(os.path.join(cwd, 'common', 'SConscript'))
|
|
|
|
# cpu porting code files
|
|
if rtconfig.VENDOR == "t-head" :
|
|
group = group + SConscript(os.path.join(cwd, rtconfig.VENDOR, rtconfig.CPU, 'SConscript'))
|
|
else :
|
|
group = group + SConscript(os.path.join(cwd, rtconfig.CPU, 'SConscript'))
|
|
|
|
Return('group')
|