rebuild-jekyll-boards: Only include armhf and arm64 boards

This commit is contained in:
Johan Gunnarsson 2023-07-27 13:53:54 +02:00
parent c26fbc2b6d
commit 596b91184c
1 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,8 @@ def write_boards(boards, chips):
for k, board in boards.items():
board.update(chips[board["chip_id"]])
if board["debian_architecture"] not in ("armhf", "arm64", ):
continue
with open(f"docs/_boards/{k}.md", "w") as boardf:
boardf.write(BOARD_TEMPLATE.format(**board))
logger.info("Wrote %d boards", len(boards))