disk-image-uefi: Fix regression with partition sizing on arm

The sgdisk arguments for arm got mistakenly reordered, with the second
partition starting at offset 0.
This commit is contained in:
Simon Poirier 2024-08-21 18:44:30 -04:00
parent 60a5c1a779
commit df4017bf10

View File

@ -37,10 +37,10 @@ create_partitions() {
case $ARCH in
arm64|armhf)
sgdisk "${disk_image}" \
--new=13::1G \
--typecode=13:ea00 \
--new=15:0:204800 \
--typecode=15:ef00 \
--new=13::1G \
--typecode=13:ea00 \
--new=1:
;;
riscv64)