Add ADT Kconfig and fix MMU kconfig issue in Cortex-A (#6901)

* Add ADT Kconfig and fix MMU kconfig issue in Cortex-A

* [BSP] enable ADT
This commit is contained in:
Bernard Xiong
2023-02-06 01:11:04 +08:00
committed by GitHub
parent db5ed9c576
commit 98e0c58527
22 changed files with 3274 additions and 96 deletions

View File

@@ -3,6 +3,6 @@ from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('ADT', src, depend = [], CPPPATH = CPPPATH)
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT'], CPPPATH = CPPPATH)
Return('group')