Skip to content
Snippets Groups Projects
Commit 9960d13f authored by Héctor Orón Martínez's avatar Héctor Orón Martínez Committed by Sjoerd Simons
Browse files

arm64: fix development images space run out

parent 79b54958
No related branches found
No related tags found
No related merge requests found
{{ $architecture := or .architecture "arm64" }} {{ $architecture := or .architecture "arm64" }}
{{ $type := "minimal" }} {{ $type := or .type "minimal" }}
{{ $mirror := or .mirror "https://repositories.apertis.org/apertis/" }} {{ $mirror := or .mirror "https://repositories.apertis.org/apertis/" }}
{{ $suite := or .suite "17.12" }} {{ $suite := or .suite "17.12" }}
{{ $timestamp := or .timestamp "00000000.0" }} {{ $timestamp := or .timestamp "00000000.0" }}
...@@ -20,6 +20,8 @@ actions: ...@@ -20,6 +20,8 @@ actions:
imagename: {{ $image }} imagename: {{ $image }}
{{ if eq $type "minimal" }} {{ if eq $type "minimal" }}
imagesize: 4294967296 imagesize: 4294967296
{{ else }}
imagesize: 15G
{{end}} {{end}}
partitiontype: gpt partitiontype: gpt
...@@ -51,6 +53,8 @@ actions: ...@@ -51,6 +53,8 @@ actions:
fs: btrfs fs: btrfs
{{ if eq $type "minimal" }} {{ if eq $type "minimal" }}
start: 1024M start: 1024M
{{ else }}
start: 8672M
{{end}} {{end}}
end: -4M end: -4M
......
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