summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-04-01 17:07:28 +0700
committerhathach <[email protected]>2020-04-01 17:07:28 +0700
commita3e50242b9239e1fc0c10d15651222fb3ae3f6d1 (patch)
tree86619f6681a05d20313eec3fdee8dd919797ccf4 /tools
parent370dd1839465e71caa3024f6f2347b701a94953d (diff)
add dcd_esp32s2
skip esp32s2_saola for make build since idf use cmake
Diffstat (limited to 'tools')
-rw-r--r--tools/build_all.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/build_all.py b/tools/build_all.py
index 0437bcaac..65f41422f 100644
--- a/tools/build_all.py
+++ b/tools/build_all.py
@@ -27,7 +27,8 @@ if len(sys.argv) > 2:
all_boards.append(sys.argv[2])
else:
for entry in os.scandir("hw/bsp"):
- if entry.is_dir():
+ # Skip board without board.mk e.g esp32s2
+ if entry.is_dir() and os.path.exists(entry.path + "/board.mk"):
all_boards.append(entry.name)
all_boards.sort()