We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272f3fc commit cc8ca1cCopy full SHA for cc8ca1c
cmake/scripts/update_boarddb.py
@@ -13,7 +13,7 @@ def get_fpconf(config):
13
14
15
def boardstxt_filter(key):
16
- # Remove menu entry labels
+ # Remove menu entry labels and oopenocd config if any
17
# In our data model, they conflict with the actual configuration
18
# they are associated to
19
# i.e. Nucleo_144.menu.pnum.NUCLEO_F207ZG would be both
@@ -22,7 +22,8 @@ def boardstxt_filter(key):
22
23
if key[-1] == "svd_file":
24
return True
25
-
+ if len(key) >= 5 and key[-2] == "scripts" and key[-3] == "openocd":
26
+ return True
27
if key[0] == "menu":
28
# menu.xserial=U(S)ART support
29
0 commit comments