Skip to content

Commit 6402eb6

Browse files
JarmouniAfabiobaltieri
authored andcommitted
doc: scripts: board catalog: skip zephyr compats
Skip "zephyr,xxx" compats when collecting data for the new Supported Features table, since they don't represent hardware features. Signed-off-by: Abderrahmane JARMOUNI <git@jarmouni.me>
1 parent 9cad131 commit 6402eb6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

doc/_scripts/gen_boards_catalog.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,10 @@ def get_catalog(generate_hw_features=False):
263263
if node.matching_compat is None:
264264
continue
265265

266+
# skip "zephyr,xxx" compatibles
267+
if node.matching_compat.startswith("zephyr,"):
268+
continue
269+
266270
description = DeviceTreeUtils.get_cached_description(node)
267271
filename = node.filename
268272
lineno = node.lineno

0 commit comments

Comments
 (0)