未验证 提交 63feef4c 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #5322 from mysterywolf/tools

[tools] add function to auto-update rtconfig.h
...@@ -12,6 +12,46 @@ if len(sys.argv) != 2: ...@@ -12,6 +12,46 @@ if len(sys.argv) != 2:
usage() usage()
sys.exit(0) sys.exit(0)
def update_project_file(project_dir):
if os.path.isfile(os.path.join(project_dir, 'template.Uv2')):
print('prepare MDK3 project file on ' + project_dir)
command = ' --target=mdk -s'
os.system('scons --directory=' + project_dir + command + ' > 1.txt')
if os.path.isfile(os.path.join(project_dir, 'template.uvproj')):
print('prepare MDK4 project file on ' + project_dir)
command = ' --target=mdk4 -s'
os.system('scons --directory=' + project_dir + command + ' > 1.txt')
if os.path.isfile(os.path.join(project_dir, 'template.uvprojx')):
print('prepare MDK5 project file on ' + project_dir)
command = ' --target=mdk5 -s'
os.system('scons --directory=' + project_dir + command + ' > 1.txt')
if os.path.isfile(os.path.join(project_dir, 'template.ewp')):
print('prepare IAR project file on ' + project_dir)
command = ' --target=iar -s'
os.system('scons --directory=' + project_dir + command + ' > 1.txt')
def update_all_project_files(root_path):
# current path is dir
if os.path.isdir(root_path):
projects = os.listdir(root_path)
# is a project path?
if "SConscript" in projects:
print('new bsp path {}'.format(root_path))
try:
os.system('scons --pyconfig-silent -C {0}'.format(root_path)) # update rtconfig.h and .config
update_project_file(root_path)
except Exception as e:
print("error message: {}".format(e))
sys.exit(-1)
else:
for i in projects:
new_root_path = os.path.join(root_path, i)
update_all_project_files(new_root_path)
# get command options # get command options
command = '' command = ''
if sys.argv[1] == 'all': if sys.argv[1] == 'all':
...@@ -19,34 +59,7 @@ if sys.argv[1] == 'all': ...@@ -19,34 +59,7 @@ if sys.argv[1] == 'all':
elif sys.argv[1] == 'clean': elif sys.argv[1] == 'clean':
command = ' -c' command = ' -c'
elif sys.argv[1] == 'project': elif sys.argv[1] == 'project':
update_all_project_files(BSP_ROOT)
projects = os.listdir(BSP_ROOT)
for item in projects:
project_dir = os.path.join(BSP_ROOT, item)
if os.path.isfile(os.path.join(project_dir, 'template.Uv2')):
print('prepare MDK3 project file on ' + project_dir)
command = ' --target=mdk -s'
os.system('scons --directory=' + project_dir + command)
if os.path.isfile(os.path.join(project_dir, 'template.uvproj')):
print('prepare MDK4 project file on ' + project_dir)
command = ' --target=mdk4 -s'
os.system('scons --directory=' + project_dir + command)
if os.path.isfile(os.path.join(project_dir, 'template.uvprojx')):
print('prepare MDK5 project file on ' + project_dir)
command = ' --target=mdk5 -s'
os.system('scons --directory=' + project_dir + command)
if os.path.isfile(os.path.join(project_dir, 'template.ewp')):
print('prepare IAR project file on ' + project_dir)
command = ' --target=iar -s'
os.system('scons --directory=' + project_dir + command)
sys.exit(0) sys.exit(0)
else: else:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册