From 87c3463c99496047fd4dced218b22ac51a1fd7e4 Mon Sep 17 00:00:00 2001 From: Li Zhijian Date: Wed, 22 Apr 2026 02:55:24 +0000 Subject: [PATCH] image_to_vm.sh: keep compression source for seamless VM launch Previously, the compression source was deleted after compression. Keep it to allow seamless VM launching. Signed-off-by: Li Zhijian --- image_to_vm.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/image_to_vm.sh b/image_to_vm.sh index db205f76bf..ded310ae5b 100755 --- a/image_to_vm.sh +++ b/image_to_vm.sh @@ -48,6 +48,10 @@ DEFINE_string getbinpkgver "" \ # include upload options . "${BUILD_LIBRARY_DIR}/release_util.sh" || exit 1 +# Override the default value to false so that +# ./flatcar_production_qemu_uefi.sh can launch the qemu VM later. +FLAGS_only_store_compressed=${FLAGS_FALSE} + # Parse command line FLAGS "$@" || exit 1 eval set -- "${FLAGS_ARGV}"