Vmdb2 script for building a Debian disc image for Raspberry Pi with PeachCloud pre-installed.
Go to file
Gunnar Wolf 57e90df103
All packages needed for RPi4 are now in buster/backports, stop bringing unstable in
2020-11-05 11:35:58 -06:00
debos debos: Add firmware-brcm80211 package needed for wifi 2020-03-10 17:56:11 -04:00
rootfs Add a configuration file for wireless networking 2020-08-15 00:15:43 -05:00
.gitignore gitignore: Add raspi_4.yaml 2020-07-01 04:21:57 +09:00
.gitmodules The images build with Buster's vmdb2 - no need to include it as a submodule anymore 2019-07-18 12:57:20 -03:00
LICENSE Initial commit 2017-10-08 22:48:29 +02:00
Makefile All packages needed for RPi4 are now in buster/backports, stop bringing unstable in 2020-11-05 11:35:58 -06:00
README.md Update README.md with additional build dependencies 2020-08-15 00:52:44 -05:00
compress.sh Switch to xz compression 2018-01-08 22:47:43 +01:00
raspi1_b0rken.yaml Fix remaining references to rpi3 (instead of rpi) 2019-07-19 09:50:16 -03:00
raspi1_uboot_b0rken.yaml Fix remaining references to rpi3 (instead of rpi) 2019-07-19 09:50:16 -03:00
raspi_master.yaml Add a configuration file for wireless networking 2020-08-15 00:15:43 -05:00

README.md

Raspberry Pi image specs

This repository contains the files with which the images referenced at https://wiki.debian.org/RaspberryPiImages have been built.

Option 1: Downloading an image

See https://wiki.debian.org/RaspberryPiImages for where to obtain the latest pre-built image.

Option 2: Building your own image

If you prefer, you can build a Debian buster Raspberry Pi image yourself. If you are reading this document online, you should first clone this repository:

git clone --recursive https://salsa.debian.org/raspi-team/image-specs.git
cd image-specs

For this you will first need to install the following packages on a Debian Buster (10) or higher system:

  • vmdb2
  • dosfstools
  • qemu-user-static
  • binfmt-support

Do note that at least currently vmdb2 uses some syntax that is available only in the version in testing (Bullseye).

This repository includes a master YAML recipe (which is basically a configuration file) for all of the generated images, diverting as little as possible in a parametrized way. The master recipe is raspi_master.yaml.

A Makefile is supplied to drive the build of the recipes into images — raspi_0w (for the Raspberry Pi 0, 0w and 1, models A and B), raspi_2 (for the Raspberry Pi 2, models A and B), raspi_3 (for all models of the Raspberry Pi 3), and raspi_4 (for all models of the Raspberry Pi 4). That is, if you want to build the default image for a Raspberry Pi 3B+, you can just issue:

   make raspi_3.img

You might also want to edit them to customize the built image. If you want to start from the platform-specific recipe, you can issue:

   make raspi_3.yaml

The recipe drives vmdb2, the successor to vmdebootstrap. Please refer to its documentation for further details; it is quite an easy format to understand.

Copy the generated file to a name descriptive enough for you (say, my_raspi.yaml). Once you have edited the recipe for your specific needs, you can generate the image by issuing the following (as root):

    vmdb2 --rootfs-tarball=my_raspi.tar.gz --output \
	my_raspi.img my_raspi.yaml --log my_raspi.log

This is, just follow what is done by the _build_img target of the Makefile.

Installing the image onto the Raspberry Pi

Plug an SD card which you would like to entirely overwrite into your SD card reader.

Assuming your SD card reader provides the device /dev/mmcblk0 (Beware If you choose the wrong device, you might overwrite important parts of your system. Double check it's the correct device!), copy the image onto the SD card:

sudo dd if=raspi_3.img of=/dev/mmcblk0 bs=64k oflag=dsync status=progress

Then, plug the SD card into the Raspberry Pi, and power it up.

The image uses the hostname rpi0w, rpi2, rpi3, or rpi4 depending on the target build. The provided image will allow you to log in with the root account with no password set, but only logging in at the physical console (be it serial or by USB keyboard and HDMI monitor).