Increase bpool size to 2G so we don't risk boot breaking when both ZFS and kernel update

This commit is contained in:
driops
2022-04-07 02:09:02 -04:00
parent c2bd03377d
commit d86ec88cdc
4 changed files with 4 additions and 4 deletions

View File

@@ -515,7 +515,7 @@ echo "======= partitioning the disk =========="
for selected_disk in "${v_selected_disks[@]}"; do
wipefs --all --force "$selected_disk"
sgdisk -a1 -n1:24K:+1000K -t1:EF02 "$selected_disk"
sgdisk -n2:0:+512M -t2:BF01 "$selected_disk" # Boot pool
sgdisk -n2:0:+2G -t2:BF01 "$selected_disk" # Boot pool
sgdisk -n3:0:"$tail_space_parameter" -t3:BF01 "$selected_disk" # Root pool
done