summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Tomaszewski <kamil.tomaszewski@sony.com>2019-10-11 12:00:58 +0200
committerKamil Tomaszewski <kamil.tomaszewski@sony.com>2019-10-11 12:09:51 +0200
commit5cf66dfec278ba6e34bfb3041ef98e2d23c0eb1b (patch)
tree7a27220653bb9312d0dbb12d7f958d23a7b7d9c9
parent0d139e4eca0a992137a4ec93c86aa56518ed1095 (diff)
Add cxd56 to build_board_info
-rw-r--r--tools/build_board_info.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py
index 7d0d2996c..efa481a63 100644
--- a/tools/build_board_info.py
+++ b/tools/build_board_info.py
@@ -12,18 +12,20 @@ from sh.contrib import git
sys.path.append("adabot")
import adabot.github_requests as github
-SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"]
+SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4", "cxd56"]
BIN = ('bin',)
UF2 = ('uf2',)
BIN_UF2 = ('bin', 'uf2')
HEX = ('hex',)
+SPK = ('spk',)
# Default extensions
extension_by_port = {
"nrf": UF2,
"atmel-samd": UF2,
"stm32f4": BIN,
+ "cxd56": SPK,
}
# Per board overrides