(bsp_root, dist_dir)
| 94 | source_list.append(pathfile) |
| 95 | |
| 96 | def bsp_copy_files(bsp_root, dist_dir): |
| 97 | # copy BSP files |
| 98 | do_copy_folder(os.path.join(bsp_root), dist_dir, |
| 99 | ignore_patterns('build', '__pycache__', 'dist', '*.pyc', '*.old', '*.map', 'rtthread.bin', '.sconsign.dblite', '*.elf', '*.axf', 'cconfig.h')) |
| 100 | |
| 101 | def bsp_update_sconstruct(dist_dir): |
| 102 | with open(os.path.join(dist_dir, 'SConstruct'), 'r') as f: |
no test coverage detected