37 lines
965 B
HTML
37 lines
965 B
HTML
---
|
|
title: All SD card images
|
|
layout: default
|
|
---
|
|
<main>
|
|
<div class="container">
|
|
<h2>Supported boards</h2>
|
|
<p>Minimal, pure and up-to-date vanilla Debian/Ubuntu Linux SD card images for various ARM-based single board computers (SBCs).</p>
|
|
<hr>
|
|
</div>
|
|
<div class="container">
|
|
<table class="table table-sm table-hover">
|
|
<caption>Supported boards.</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Board</th>
|
|
<th scope="col">Board maker</th>
|
|
<th scope="col">SoC</th>
|
|
<th scope="col">CPU</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% assign x = site.boards | sort_natural: "board_name" %}
|
|
{% for board in x %}
|
|
<tr data-href="/boards/{{ board.board_id }}.html">
|
|
<td><a href="/boards/{{ board.board_id }}.html">{{ board.board_name }}</a></td>
|
|
<td>{{ board.board_maker_name }}</td>
|
|
<td>{{ board.board_soc_name }}</td>
|
|
<td>{{ board.board_cpu_name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<hr>
|
|
</div>
|
|
</main>
|