[components][drivers]legacy fdt (#9062)

* legacy fdt

* update fdt
This commit is contained in:
zms123456
2024-06-19 19:48:35 +08:00
committed by GitHub
parent 7250301d3e
commit 3b1ce1e4b6
36 changed files with 379 additions and 217 deletions

View File

@@ -0,0 +1,16 @@
# RT-Thread building script for bridge
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
if GetDepend('RT_USING_FDT'):
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')