From f0c94a9107739fbb572f7b7568ac7c3f14ce6c21 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Fri, 10 Oct 2025 17:00:59 +0900 Subject: [PATCH] vm_image_util: Use larger rootfs for AWS and Akamai images The default rootfs size for the .bin raw iamge is a bit smaller now because we still want to be able to flash to 8 GB storage. However, the VM images still have the 6 GB rootfs as before. Some cloud images weren't using the larger VM rootfs size though but the raw image rootfs size. Specify that AWS and Akamai images should use the larger VM rootfs size. Signed-off-by: Kai Lueke --- build_library/vm_image_util.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_library/vm_image_util.sh b/build_library/vm_image_util.sh index 17a0c024a2..349736df01 100644 --- a/build_library/vm_image_util.sh +++ b/build_library/vm_image_util.sh @@ -224,9 +224,11 @@ IMG_ami_vmdk_DISK_FORMAT=vmdk_stream IMG_ami_vmdk_OEM_USE=ami IMG_ami_vmdk_OEM_PACKAGE=common-oem-files IMG_ami_vmdk_SYSEXT=oem-ami +IMG_ami_vmdk_DISK_LAYOUT=vm IMG_ami_OEM_USE=ami IMG_ami_OEM_PACKAGE=common-oem-files IMG_ami_OEM_SYSEXT=oem-ami +IMG_ami_DISK_LAYOUT=vm ## openstack IMG_openstack_DISK_FORMAT=qcow2 @@ -342,6 +344,7 @@ IMG_kubevirt_OEM_SYSEXT=oem-kubevirt IMG_kubevirt_DISK_EXTENSION=qcow2 ## akamai (Linode) +IMG_akamai_DISK_LAYOUT=vm IMG_akamai_OEM_PACKAGE=common-oem-files IMG_akamai_OEM_USE=akamai IMG_akamai_OEM_SYSEXT=oem-akamai