Skip to content

Commit

Permalink
Merge pull request #1915 from flatcar/kai/qemu-script-img-name
Browse files Browse the repository at this point in the history
build_library: Use original qemu image name in qemu script
  • Loading branch information
pothos authored Apr 17, 2024
2 parents 9c91741 + 2e3f175 commit ebe12ab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build_library/vm_image_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -812,10 +812,14 @@ _write_qemu_uefi_conf() {
# We now only support building qemu_uefi and generate the
# other artifacts from here
if [ "${VM_IMG_TYPE}" = qemu_uefi ]; then
local qemu="${VM_DST_IMG/qemu_uefi/qemu}"
local qemu_uefi_secure="${VM_DST_IMG/qemu_uefi/qemu_uefi_secure}"
local qemu_name="${VM_NAME/qemu_uefi/qemu}"
local qemu_uefi_secure_name="${VM_NAME/qemu_uefi/qemu_uefi_secure}"
if [ "${BOARD}" = amd64-usr ]; then
VM_IMG_TYPE=qemu _write_qemu_conf
VM_IMG_TYPE=qemu VM_DST_IMG="${qemu}" VM_NAME="${qemu_name}" _write_qemu_conf
fi
VM_IMG_TYPE=qemu_uefi_secure _write_qemu_uefi_secure_conf
VM_IMG_TYPE=qemu_uefi_secure VM_DST_IMG="${qemu_uefi_secure}" VM_NAME="${qemu_uefi_secure_name}" _write_qemu_uefi_secure_conf
fi
}

Expand Down

0 comments on commit ebe12ab

Please sign in to comment.