summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorReinhard Panhuber <[email protected]>2021-04-20 20:15:54 +0200
committerReinhard Panhuber <[email protected]>2021-04-20 20:15:54 +0200
commit705753f448f5cf3b24a6fa49ec02fe1ab0b400aa (patch)
tree49533426ece7ecec32793b48f4e0103c621b07df /tools
parentc7c11b181c05136a1c077dc445f422c7e17edc02 (diff)
parentc5f440a6aa39a09487000e7ce408d252dc7641f0 (diff)
Merge remote-tracking branch 'upstream/master' into uac2_fix_cs_as_int_alt_set_0
Diffstat (limited to 'tools')
-rw-r--r--tools/build_esp32sx.py (renamed from tools/build_esp32s2.py)3
-rw-r--r--tools/build_family.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/build_esp32s2.py b/tools/build_esp32sx.py
index 0ef05023c..91953f080 100644
--- a/tools/build_esp32s2.py
+++ b/tools/build_esp32sx.py
@@ -38,6 +38,9 @@ all_boards = []
for entry in os.scandir("hw/bsp/esp32s2/boards"):
if entry.is_dir():
all_boards.append(entry.name)
+for entry in os.scandir("hw/bsp/esp32s3/boards"):
+ if entry.is_dir():
+ all_boards.append(entry.name)
filter_with_input(all_boards)
all_boards.sort()
diff --git a/tools/build_family.py b/tools/build_family.py
index 65d0e8fc2..c46781904 100644
--- a/tools/build_family.py
+++ b/tools/build_family.py
@@ -38,7 +38,7 @@ all_examples.sort()
# If family are not specified in arguments, build all
all_families = []
for entry in os.scandir("hw/bsp"):
- if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name != "esp32s2":
+ if entry.is_dir() and os.path.isdir(entry.path + "/boards") and entry.name != "esp32s2" and entry.name != "esp32s3":
all_families.append(entry.name)
filter_with_input(all_families)