# Requirements In order to test this design on hardware, you will need the following: * Vivado 2024.1 * Vitis 2024.1 * PetaLinux Tools 2024.1 * [Ethernet FMC] or [Robust Ethernet FMC] * For the Zynq designs: [Xilinx Soft TEMAC license](https://ethernetfmc.com/getting-a-license-for-the-xilinx-tri-mode-ethernet-mac/) * One of the supported carrier boards listed below ## List of supported boards {% set unique_boards = {} %} {% for design in data.designs %} {% if design.publish %} {% if design.board not in unique_boards %} {% set _ = unique_boards.update({design.board: {"group": design.group, "link": design.link, "connectors": []}}) %} {% endif %} {% if design.connector not in unique_boards[design.board]["connectors"] and '&' not in design.connector %} {% set _ = unique_boards[design.board]["connectors"].append(design.connector) %} {% endif %} {% endif %} {% endfor %} {% for group in data.groups %} {% set boards_in_group = [] %} {% for name, board in unique_boards.items() %} {% if board.group == group.label %} {% set _ = boards_in_group.append(board) %} {% endif %} {% endfor %} {% if boards_in_group | length > 0 %} ### {{ group.name }} boards | Carrier board | Supported FMC connector(s) | |---------------------|--------------| {% for name,board in unique_boards.items() %}{% if board.group == group.label %}| [{{ name }}]({{ board.link }}) | {% for connector in board.connectors %}{{ connector }} {% endfor %} | {% endif %}{% endfor %} {% endif %} {% endfor %} For list of the target designs showing the number of ports supported, refer to the build instructions. [Ethernet FMC]: https://ethernetfmc.com/docs/ethernet-fmc/overview/ [Robust Ethernet FMC]: https://ethernetfmc.com/docs/robust-ethernet-fmc/overview/