peach-img-builder/raspi3.yaml

139 lines
4.6 KiB
YAML
Raw Normal View History

2017-10-08 20:18:48 +00:00
# See https://wiki.debian.org/RaspberryPi3 for known issues and more details.
steps:
- mkimg: "{{ output }}"
size: 1500M
- mklabel: msdos
device: "{{ output }}"
- mkpart: primary
fs-type: 'fat32'
device: "{{ output }}"
start: 0%
end: 20%
tag: /boot
2017-10-08 20:18:48 +00:00
- mkpart: primary
device: "{{ output }}"
start: 20%
end: 100%
tag: /
- kpartx: "{{ output }}"
2017-10-08 20:18:48 +00:00
- mkfs: vfat
partition: /boot
label: RASPIFIRM
2017-10-08 20:18:48 +00:00
- mkfs: ext4
partition: /
label: RASPIROOT
2017-10-08 20:18:48 +00:00
- mount: /
2017-10-08 20:18:48 +00:00
- mount: /boot
mount-on: /
2017-10-08 20:18:48 +00:00
dirname: '/boot/firmware'
- unpack-rootfs: /
2017-10-08 20:18:48 +00:00
# We need to use Debian buster (currently testing) instead of Debian stretch
# (currently stable) for:
#
# linux ≥ 4.14
2017-10-08 20:18:48 +00:00
# Which includes the sdhost driver for faster SD card access and making the
# WiFi chip available, and has the WiFi driver enabled.
2017-10-08 20:18:48 +00:00
#
# raspi3-firmware ≥ 1.20171201-1
2017-10-08 20:18:48 +00:00
# Which includes a recent enough firmware version to correctly pass the MAC
# address to the kernel. This is a regression with Linux ≥ 4.12, see
# https://github.com/raspberrypi/firmware/issues/846
# Also, this package contains a Raspberry Pi 3-specific firmware file
# required by the WiFi driver.
2017-10-08 20:18:48 +00:00
- qemu-debootstrap: buster
mirror: http://deb.debian.org/debian
target: /
2017-10-08 20:18:48 +00:00
arch: arm64
components:
- main
- contrib
- non-free
unless: rootfs_unpacked
2017-10-08 20:18:48 +00:00
# TODO(https://bugs.debian.org/877855): remove this workaround once
# debootstrap is fixed
- chroot: /
2017-10-08 20:18:48 +00:00
shell: |
echo 'deb http://deb.debian.org/debian buster main contrib non-free' > /etc/apt/sources.list
echo 'deb http://deb.debian.org/debian-security buster/updates main contrib non-free' >> /etc/apt/sources.list
echo '# Backports are _not_ enabled by default. ' >> /etc/apt/sources.list
echo '# Enable them by uncommenting the following line:' >> /etc/apt/sources.list
echo '# deb http://deb.debian.org/debian buster-backports main contrib non-free' >> /etc/apt/sources.list
2017-10-08 20:18:48 +00:00
apt-get update
unless: rootfs_unpacked
2017-10-08 20:18:48 +00:00
- apt: install
packages:
- ssh
- parted
2017-10-08 20:18:48 +00:00
- dosfstools
# Contains /lib/firmware/brcm/brcmfmac43430-sdio.bin (required for WiFi).
- firmware-brcm80211
- wireless-tools
- wpasupplicant
- raspi3-firmware
- linux-image-arm64
tag: /
unless: rootfs_unpacked
- cache-rootfs: /
unless: rootfs_unpacked
2017-10-08 20:18:48 +00:00
- shell: |
2019-07-19 13:05:43 +00:00
echo "rpi3" > "${ROOT?}/etc/hostname"
2017-10-08 20:18:48 +00:00
# Allow root logins with no password
sed -i 's,root:[^:]*:,root::,' "${ROOT?}/etc/shadow"
2017-10-08 20:18:48 +00:00
install -m 644 -o root -g root fstab "${ROOT?}/etc/fstab"
install -m 644 -o root -g root eth0 "${ROOT?}/etc/network/interfaces.d/eth0"
install -m 755 -o root -g root rpi-set-sysconf "${ROOT?}/usr/local/sbin/rpi-set-sysconf"
install -m 644 -o root -g root rpi-set-sysconf.service "${ROOT?}/etc/systemd/system"
2019-07-19 15:14:51 +00:00
install -m 644 -o root -g root sysconf.txt "${ROOT?}/boot/firmware/sysconf.txt"
mkdir -p "${ROOT?}/etc/systemd/system/basic.target.requires/"
ln -s /etc/systemd/system/rpi-set-sysconf.service "${ROOT?}/etc/systemd/system/basic.target.requires/rpi-set-sysconf.service"
2019-07-19 15:14:51 +00:00
install -m 755 -o root -g root rpi-resizerootfs "${ROOT?}/usr/sbin/rpi-resizerootfs"
2019-07-19 00:18:59 +00:00
install -m 644 -o root -g root rpi-resizerootfs.service "${ROOT?}/etc/systemd/system"
2017-10-08 20:18:48 +00:00
mkdir -p "${ROOT?}/etc/systemd/system/systemd-remount-fs.service.requires/"
ln -s /etc/systemd/system/rpi-resizerootfs.service "${ROOT?}/etc/systemd/system/systemd-remount-fs.service.requires/rpi-resizerootfs.service"
2017-10-08 20:18:48 +00:00
2019-07-19 00:18:59 +00:00
install -m 644 -o root -g root rpi-generate-ssh-host-keys.service "${ROOT?}/etc/systemd/system"
2017-10-08 20:18:48 +00:00
mkdir -p "${ROOT?}/etc/systemd/system/multi-user.target.requires/"
ln -s /etc/systemd/system/rpi-generate-ssh-host-keys.service "${ROOT?}/etc/systemd/system/multi-user.target.requires/rpi-generate-ssh-host-keys.service"
2017-10-08 20:18:48 +00:00
rm -f ${ROOT?}/etc/ssh/ssh_host_*_key*
root-fs: /
2017-10-08 20:18:48 +00:00
# Clean up archive cache (likely not useful) and lists (likely outdated) to
# reduce image size by several hundred megabytes.
- chroot: /
2017-10-08 20:18:48 +00:00
shell: |
apt-get clean
rm -rf /var/lib/apt/lists
# Modify the kernel commandline we take from the firmware to boot from
# the partition labeled raspiroot instead of forcing it to mmcblk0p2
- chroot: /
shell: |
ls -aR /boot
sed -i 's/.dev.mmcblk0p2/LABEL=RASPIROOT/' /boot/firmware/cmdline.txt
2017-10-08 20:18:48 +00:00
# TODO(https://github.com/larswirzenius/vmdb2/issues/24): remove once vmdb
# clears /etc/resolv.conf on its own.
- shell: |
rm "${ROOT?}/etc/resolv.conf"
root-fs: /