diff options
| author | Ha Thach <[email protected]> | 2020-11-09 11:22:29 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-09 11:22:29 +0700 |
| commit | 589dfdb0e58fe6630f2b67c49c7f682ac51aba8f (patch) | |
| tree | 6d018c153f30b28ecc53e7b21fe0b92feee365fc /tools | |
| parent | 1b1e205a3014aa4e26933e42167632b16154c14c (diff) | |
| parent | 496c7c701a5a4491c8a393fc580b5df2f29c1e22 (diff) | |
Merge pull request #554 from hathach/initial-same7x
Initial same7x
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_all.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index 0dc555d2f..172cb2070 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -76,6 +76,10 @@ def skip_example(example, board): if 'CROSS_COMPILE = xtensa-esp32s2-elf-' in mk_contents: return 1 + # Skip all OPT_MCU_NONE these are WIP port + if '-DCFG_TUSB_MCU=OPT_MCU_NONE' in mk_contents: + return 1 + # Skip if CFG_TUSB_MCU in board.mk to match skip file for skip_file in glob.iglob(ex_dir + '/.skip.MCU_*'): mcu_cflag = '-DCFG_TUSB_MCU=OPT_' + os.path.basename(skip_file).split('.')[2] |
