boards.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # Copyright (c) 2019 Nordic Semiconductor ASA
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. import argparse
  5. import os
  6. from pathlib import Path
  7. import re
  8. import sys
  9. import textwrap
  10. from west import log
  11. from west.commands import WestCommand
  12. from zephyr_ext_common import ZEPHYR_BASE
  13. sys.path.append(os.fspath(Path(__file__).parent.parent))
  14. import list_boards
  15. import zephyr_module
  16. class Boards(WestCommand):
  17. def __init__(self):
  18. super().__init__(
  19. 'boards',
  20. # Keep this in sync with the string in west-commands.yml.
  21. 'display information about supported boards',
  22. 'Display information about boards',
  23. accepts_unknown_args=False)
  24. def do_add_parser(self, parser_adder):
  25. default_fmt = '{name}'
  26. parser = parser_adder.add_parser(
  27. self.name,
  28. help=self.help,
  29. formatter_class=argparse.RawDescriptionHelpFormatter,
  30. description=self.description,
  31. epilog=textwrap.dedent(f'''\
  32. FORMAT STRINGS
  33. --------------
  34. Boards are listed using a Python 3 format string. Arguments
  35. to the format string are accessed by name.
  36. The default format string is:
  37. "{default_fmt}"
  38. The following arguments are available:
  39. - name: board name
  40. - arch: board architecture
  41. - dir: directory that contains the board definition
  42. '''))
  43. # Remember to update west-completion.bash if you add or remove
  44. # flags
  45. parser.add_argument('-f', '--format', default=default_fmt,
  46. help='''Format string to use to list each board;
  47. see FORMAT STRINGS below.''')
  48. parser.add_argument('-n', '--name', dest='name_re',
  49. help='''a regular expression; only boards whose
  50. names match NAME_RE will be listed''')
  51. list_boards.add_args(parser)
  52. return parser
  53. def do_run(self, args, _):
  54. if args.name_re is not None:
  55. name_re = re.compile(args.name_re)
  56. else:
  57. name_re = None
  58. modules_board_roots = []
  59. for module in zephyr_module.parse_modules(ZEPHYR_BASE):
  60. board_root = module.meta.get('build', {}).get('settings', {}).get('board_root')
  61. if board_root is not None:
  62. modules_board_roots.append(Path(module.project) / board_root)
  63. args.board_roots += modules_board_roots
  64. for board in list_boards.find_boards(args):
  65. if name_re is not None and not name_re.search(board.name):
  66. continue
  67. log.inf(args.format.format(name=board.name, arch=board.arch,
  68. dir=board.dir))