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')
|