summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2019-01-14 13:30:09 -0800
committerGitHub <noreply@github.com>2019-01-14 13:30:09 -0800
commitb5f35b82e18ba1208fd5d5a66f304cbd4d2af999 (patch)
tree5881455c93cda077940d2a64751df06a473a0a27 /tools
parent3aeadb9f0c1bbf678d4289ec36489078543a503c (diff)
Remove from build info too
Diffstat (limited to 'tools')
-rw-r--r--tools/build_board_info.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py
index a4b49d160..163ebf624 100644
--- a/tools/build_board_info.py
+++ b/tools/build_board_info.py
@@ -12,7 +12,7 @@ from sh.contrib import git
sys.path.append("adabot")
import adabot.github_requests as github
-SUPPORTED_PORTS = ["nrf", "esp8266", "atmel-samd"]
+SUPPORTED_PORTS = ["nrf", "atmel-samd"]
BIN = ('bin',)
UF2 = ('uf2',)
@@ -22,7 +22,6 @@ HEX = ('hex',)
# Default extensions
extension_by_port = {
"nrf": UF2,
- "esp8266": BIN,
"atmel-samd": UF2,
}