From 8570a9ed859f94e53f1fe05babbcb55c63251a33 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Mon, 12 Feb 2024 14:41:45 +0100 Subject: [PATCH] revert small sgdisk change Signed-off-by: Itxaka --- tools-image/build-arm-image.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools-image/build-arm-image.sh b/tools-image/build-arm-image.sh index 12821f5..58af128 100755 --- a/tools-image/build-arm-image.sh +++ b/tools-image/build-arm-image.sh @@ -370,6 +370,8 @@ elif [ "$model" == "rpi4" ]; then sgdisk -n 3:0:+${recovery_size}M -c 3:recovery -t 3:8300 ${output_image} sgdisk -n 4:0:+${oem_size}M -c 4:oem -t 4:8300 ${output_image} sgdisk -n 5:0:+64M -c 5:persistent -t 5:8300 ${output_image} + sgdisk -g ${output_image} + sgdisk -m 1:2:3:4:5 ${output_image} else sgdisk -n 1:8192:+16M -c 1:EFI -t 1:0700 ${output_image} sgdisk -n 2:0:+${state_size}M -c 2:state -t 2:8300 ${output_image}