add dcd_esp32s2

skip esp32s2_saola for make build since idf use cmake
This commit is contained in:
hathach
2020-04-01 17:07:28 +07:00
parent 370dd18394
commit a3e50242b9
4 changed files with 768 additions and 5 deletions

View File

@@ -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()