Skip to content

Commit 18f3b3d

Browse files
committed
Bump config partition size to 26M
A luks2 volume requires >16M, so the current size of 12M causes an offset error. Originally with luks1 the header size was 2M and 10M usable space was allocated. With the bump to 16M header, we now allocate 26M.
1 parent 0f13fd2 commit 18f3b3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

part2/stages/Functions/install-main

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ mk_xc_lvm()
4646
do_cmd pvcreate -ff -y "${PARTITION_DEV}" || return 1
4747
do_cmd vgcreate xenclient "${PARTITION_DEV}" || return 1
4848
do_cmd create_lv xenclient boot --size 12M || return 1
49-
do_cmd create_lv xenclient config --size 12M || return 1
49+
do_cmd create_lv xenclient config --size 26M || return 1
5050
do_cmd create_lv xenclient root --size ${DOM0_ROOT_LV_SIZE} || return 1
5151
do_cmd create_lv xenclient root.new --size ${DOM0_ROOT_LV_SIZE} || return 1
5252
do_cmd create_lv xenclient swap --size 256M || return 1

0 commit comments

Comments
 (0)