blob: 99155267eeb1c46950335db50da9280cd282456d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
bootstrap_distro:
name: "bookworm" # => Debian 12
mirror_url: "http://deb.debian.org/debian"
packages:
- "rpi-eeprom"
- "rpi-update"
- "fake-hwclock"
- "man-db"
- "manpages"
- "net-tools"
- "ntp"
bootstrap_opts: "--arch=arm64"
bootstrap_apt_ignored_preferences: ""
# yamllint disable rule:line-length
bootstrap_apt_sources: |
deb [signed-by=/usr/share/keyrings/raspberrypi.gpg] http://archive.raspberrypi.org/debian {{ bootstrap_distro.name }} main
deb http://deb.debian.org/debian {{ bootstrap_distro.name }} main
# yamllint enable rule:line-length
# 1 = SD card
# f = Restart (loop back)
# 6 = NVMe SSD
# 4 = USB mass storage
# 1 = SD card (fallback)
bootstrap_boot_order: "0x1f641"
|