mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-16 07:05:14 +00:00
Merge pull request #6103 from fidencio/topic/bump-qemu-to-7.2.0
versions: Bump QEMU to v7.2.0
This commit is contained in:
commit
980a2c7794
0
tools/packaging/qemu/patches/7.2.x/no_patches.txt
Normal file
0
tools/packaging/qemu/patches/7.2.x/no_patches.txt
Normal file
@ -242,7 +242,9 @@ generate_qemu_options() {
|
|||||||
# Disable graphical network access
|
# Disable graphical network access
|
||||||
qemu_options+=(size:--disable-vnc)
|
qemu_options+=(size:--disable-vnc)
|
||||||
qemu_options+=(size:--disable-vnc-jpeg)
|
qemu_options+=(size:--disable-vnc-jpeg)
|
||||||
qemu_options+=(size:--disable-vnc-png)
|
if ! gt_eq "${qemu_version}" "7.2.0" ; then
|
||||||
|
qemu_options+=(size:--disable-vnc-png)
|
||||||
|
fi
|
||||||
qemu_options+=(size:--disable-vnc-sasl)
|
qemu_options+=(size:--disable-vnc-sasl)
|
||||||
|
|
||||||
# Disable PAM authentication: it's a feature used together with VNC access
|
# Disable PAM authentication: it's a feature used together with VNC access
|
||||||
@ -330,13 +332,16 @@ generate_qemu_options() {
|
|||||||
# building QEMU.
|
# building QEMU.
|
||||||
case "$arch" in
|
case "$arch" in
|
||||||
aarch64)
|
aarch64)
|
||||||
|
qemu_options+=(functionality:--disable-virtiofsd)
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
|
qemu_options+=(functionality:--disable-virtiofsd)
|
||||||
;;
|
;;
|
||||||
ppc64le)
|
ppc64le)
|
||||||
qemu_options+=(functionality:--enable-virtiofsd)
|
qemu_options+=(functionality:--enable-virtiofsd)
|
||||||
;;
|
;;
|
||||||
s390x)
|
s390x)
|
||||||
|
qemu_options+=(functionality:--disable-virtiofsd)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -353,8 +358,10 @@ generate_qemu_options() {
|
|||||||
qemu_options+=(size:--disable-vde)
|
qemu_options+=(size:--disable-vde)
|
||||||
|
|
||||||
# Don't build other options which can't be depent on build server.
|
# Don't build other options which can't be depent on build server.
|
||||||
qemu_options+=(size:--disable-xfsctl)
|
if ! gt_eq "${qemu_version}" "7.2.0" ; then
|
||||||
qemu_options+=(size:--disable-libxml2)
|
qemu_options+=(size:--disable-xfsctl)
|
||||||
|
qemu_options+=(size:--disable-libxml2)
|
||||||
|
fi
|
||||||
qemu_options+=(size:--disable-nettle)
|
qemu_options+=(size:--disable-nettle)
|
||||||
|
|
||||||
# Disable XEN driver
|
# Disable XEN driver
|
||||||
|
@ -88,8 +88,8 @@ assets:
|
|||||||
qemu:
|
qemu:
|
||||||
description: "VMM that uses KVM"
|
description: "VMM that uses KVM"
|
||||||
url: "https://github.com/qemu/qemu"
|
url: "https://github.com/qemu/qemu"
|
||||||
version: "v6.2.0"
|
version: "v7.2.0"
|
||||||
tag: "v6.2.0"
|
tag: "v7.2.0"
|
||||||
# Do not include any non-full release versions
|
# Do not include any non-full release versions
|
||||||
# Break the line *without CR or space being appended*, to appease
|
# Break the line *without CR or space being appended*, to appease
|
||||||
# yamllint, and note the deliberate ' ' at the end of the expression.
|
# yamllint, and note the deliberate ' ' at the end of the expression.
|
||||||
|
Loading…
Reference in New Issue
Block a user