mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 16:57:22 +08:00
1537544f6a
add phytium board (E2000) bsp support usart support SMP with demo
11 lines
190 B
Python
11 lines
190 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.S') + Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('AARCH32-BOOT', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|