packaging: Remove reference to sheepdog driver

The QEMU sheepdog driver was deprecated in 5.2.0 and removed entirely in
6.1.  Explicitly disabling, therefore is unnecessary from 5.2.0 and will
give an error from 6.1.

fixes #2337

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2021-08-03 17:32:56 +10:00
parent 2e28b71473
commit 831c2feead

View File

@ -222,8 +222,10 @@ generate_qemu_options() {
# Disabled options # Disabled options
# Disable sheepdog block driver support # Disable sheepdog block driver support (deprecated in 5.2.0)
if ! gt_eq ${qemu_version} 5.2.0 ; then
qemu_options+=(size:--disable-sheepdog) qemu_options+=(size:--disable-sheepdog)
fi
# Disable block migration in the main migration stream # Disable block migration in the main migration stream
qemu_options+=(size:--disable-live-block-migration) qemu_options+=(size:--disable-live-block-migration)