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 9565824464 docs: Regenerate boards 2019-04-30 14:17:36 +02:00
dockerfiles Rework the Dockerfiles 2019-04-03 20:36:34 +02:00
docs docs: Regenerate boards 2019-04-30 14:17:36 +02:00
post-2nd-stage-files/etc post-2nd-stage-files: Remove README file 2019-04-24 19:58:51 +02:00
pre-2nd-stage-files/etc/kernel/postrm.d pre-2nd-stage-files: Fix boot script for aarch64 2019-04-03 21:53:30 +02:00
pre-2nd-stage-files-arm64/etc/initramfs/post-update.d zz-update-uimg: Remove earlyprintk 2019-04-06 23:06:31 +02:00
pre-2nd-stage-files-armhf/etc/initramfs/post-update.d zz-update-uimg: Remove earlyprintk 2019-04-06 23:06:31 +02:00
Dockerfile Rework the Dockerfiles 2019-04-03 20:36:34 +02: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 a few Allwinner A20 boards 2019-04-26 19:58:53 +02:00
build-boot-rpi build-boot-rpi: Less verbose wget output 2019-04-07 12:22:03 +02:00
build-boot-sunxi Rename allwinner to sunxi 2019-04-07 16:58:22 +02:00
build-debian build-debian: Generate a list of all files in the image 2019-04-22 11:30:34 +02:00
build-image Code dump 2019-03-16 21:33:09 +01:00
build-u_boot Parameterize artifacts and git cache directory 2019-04-07 20:44:59 +02:00
chips.csv chips.csv: Add Allwinner A31 2019-04-07 20:27:41 +02:00
debians.csv debians.csv: Add Sid 2019-04-07 16:42:10 +02:00
rebuild-boots docs: Make each board page aware of the dtb name 2019-04-23 18:13:00 +02:00
rebuild-debians docs: Make each board page aware of the dtb name 2019-04-23 18:13:00 +02:00
rebuild-jekyll-boards docs: Make each board page aware of the dtb name 2019-04-23 18:13:00 +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