Unoffical, minimal, pure and up-to-date vanilla Debian/Ubuntu Linux SD card images for various ARM-based single board computers (SBCs). https://github.com/johang/sd-card-images | https://sd-card-images.johang.se/boards
Go to file
Johan Gunnarsson 3c4fc8624a boards: Add many new SBCs
Also remove lots of weird boards.
2020-02-04 19:42:00 +01:00
2nd-stage-files Add support for building Ubuntu images 2019-05-12 23:46:20 +02:00
dockerfiles docker: Use buster instead of stable 2019-05-22 22:20:58 +02:00
docs docs: Regenerate boards 2020-01-18 13:03:10 +01:00
metascripts rebuild: Try to use cached ATF 2019-11-17 22:38:16 +01:00
scripts build-boot: Add bcm2711 2020-01-23 19:07:01 +01:00
Dockerfile Dockerfile: Install both python2 and python3 2019-11-19 22:06:53 +01:00
LICENSE Initial commit 2019-03-12 17:57:56 +01:00
README.md Add README.md 2019-04-21 10:29:58 +02:00
boards.csv boards: Add many new SBCs 2020-02-04 19:42:00 +01:00
chips.csv boards: Add many new SBCs 2020-02-04 19:42:00 +01:00
debians.csv debians: Remove stretch, add bullseye 2019-09-09 23:58:35 +02:00

README.md

Debian SD card images

This repository is a bunch of scripts to build SD card images that various single-board computers (SBC) can boot. Emphasis is on pureness; pure Debian and pure mainline U-boot.

Pre-built images

Pre-built images ready for download are availble at sd-card-images.johang.se.

Usage

The generated SD card images are made up of two separate images:

  • boot-BOARD.bin: Boot image that contains partition table, U-Boot and chip-specific code. The boot image will only work on the board it's built for. The filename indicates which board it's built for.
  • debian-ARCH-VERSION-PASSWORD.bin: Debian ext4 root filesystem image that contains a complete Debian installation, including kernel, initrd and device tree. This Debian image is generic and will work on all chips and boards with the CPU architecture it's built for. The filename indicates Debian version, CPU architecture and default root password.

These two images are the concatenated to a single image, which is then written to SD card, for example like this:

$ zcat boot-raspberrypi_2b.bin.gz debian-stretch-armhf-XXXXXX.bin.gz > sd-card.img
# dd if=sd-card.img of=/dev/sdXXX