Skip to content
Snippets Groups Projects
Commit a01746e5 authored by Martyn Welch's avatar Martyn Welch
Browse files

Extend boot partition size for RPi4


In 62a8cd04 we increased the size of the
boot partition on the RPi4 to ensure that there is enough space to store
at least two versions of the kernel. However this was only done for
standard apt images as ostree images use ostree-image-rpi64.yaml rather
than image-rpi64.yaml.

Repeat this partition size change for the OSTree images as well as we
are still seeing failing upgrade tests with the following error message:

May 19 02:13:03 apertis apertis-update-[1029]: Ostree upgrade failed: Installing kernel: regfile copy: No space left on device

Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
parent d55b1101
No related branches found
No related tags found
1 merge request!669[v2023] Extend boot partition size for RPi4
Pipeline #725704 passed with warnings
+13
......@@ -42,22 +42,22 @@ actions:
- name: boot
fs: ext2
start: 64M
end: 256M
end: 320M
flags: [ boot ]
- name: system
fs: ext4
start: 256M
start: 320M
{{ if eq $type "fixedfunction" }}
end: 3000M
end: 3064M
{{ else }}
end: 6000M
end: 6064M
{{ end }}
- name: general_storage
fs: ext4
{{ if eq $type "fixedfunction" }}
start: 3000M
start: 3064M
{{ else }}
start: 6000M
start: 6064M
{{ end }}
end: 100%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment