1======================== 2Supported boards/laptops 3======================== 4 5To see the list of all supported boards or laptops, check either ``struct board_info boards_known[]`` or ``struct board_info laptops_known[]`` 6in the ``known_boards.c`` file in the source tree. 7 8If you have a flashrom repo cloned locally, you can look at the file in your repo, alternatively inspect the file 9`on the web UI of our GitHub mirror <https://github.com/flashrom/flashrom/blob/main/known_boards.c#L29>`_. 10 11If you can run flashrom locally, the command ``flashrom -L`` prints the list of all supported boards and laptops 12(see :doc:`/classic_cli_manpage` for more details on command line options). The output of this command is long, so you might 13want to save it to file or grep. 14 15Each board entry is described by the ``struct board_info`` in ``include/programmer.h`` which you can inspect in the same way, either in the local source tree or 16`in the GitHub web UI <https://github.com/flashrom/flashrom/blob/main/include/programmer.h#L207>`_. 17 18Note the ``enum test_state status`` of the board. ``OK`` means board is tested, ``NT`` means not tested, to see all possible 19test states check the ``enum test_state`` definition in ``include/flash.h``. 20