mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] qemu: Version bump. 8.1.4 -> 8.2.1
@ 2024-01-31 19:56 Christian Melki
  2024-01-31 19:56 ` [ptxdist] [PATCH] host-qemu: Follow target qemu Christian Melki
  2024-02-08 16:03 ` [ptxdist] [APPLIED] qemu: Version bump. 8.1.4 -> 8.2.1 Michael Olbrich
  0 siblings, 2 replies; 5+ messages in thread
From: Christian Melki @ 2024-01-31 19:56 UTC (permalink / raw)
  To: ptxdist

Notable changes, kernel 4.4+, deprecated HAX.
I think qemu could use an options cleaning pass at some point.
https://wiki.qemu.org/ChangeLog/8.2

* Remove hax option.

* Forward patchset. Applies cleanly.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 ...pfs-allow-real-symlinks-for-security_model-mapped-f.patch | 0
 .../0101-let-ninja-use-the-jobserver.patch                   | 0
 patches/{qemu-8.1.4 => qemu-8.2.1}/series                    | 0
 rules/qemu.make                                              | 5 ++---
 4 files changed, 2 insertions(+), 3 deletions(-)
 rename patches/{qemu-8.1.4 => qemu-8.2.1}/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch (100%)
 rename patches/{qemu-8.1.4 => qemu-8.2.1}/0101-let-ninja-use-the-jobserver.patch (100%)
 rename patches/{qemu-8.1.4 => qemu-8.2.1}/series (100%)

diff --git a/patches/qemu-8.1.4/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch b/patches/qemu-8.2.1/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
similarity index 100%
rename from patches/qemu-8.1.4/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
rename to patches/qemu-8.2.1/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
diff --git a/patches/qemu-8.1.4/0101-let-ninja-use-the-jobserver.patch b/patches/qemu-8.2.1/0101-let-ninja-use-the-jobserver.patch
similarity index 100%
rename from patches/qemu-8.1.4/0101-let-ninja-use-the-jobserver.patch
rename to patches/qemu-8.2.1/0101-let-ninja-use-the-jobserver.patch
diff --git a/patches/qemu-8.1.4/series b/patches/qemu-8.2.1/series
similarity index 100%
rename from patches/qemu-8.1.4/series
rename to patches/qemu-8.2.1/series
diff --git a/rules/qemu.make b/rules/qemu.make
index 5ad69ee39..f3cab4174 100644
--- a/rules/qemu.make
+++ b/rules/qemu.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_QEMU) += qemu
 #
 # Paths and names
 #
-QEMU_VERSION	:= 8.1.4
-QEMU_MD5	:= d5cf54ace6aabd619e89df301aed66e2
+QEMU_VERSION	:= 8.2.1
+QEMU_MD5	:= bda54248d773be2599df66f8995f10e1
 QEMU		:= qemu-$(QEMU_VERSION)
 QEMU_SUFFIX	:= tar.xz
 QEMU_URL	:= https://download.qemu.org/$(QEMU).$(QEMU_SUFFIX)
@@ -105,7 +105,6 @@ QEMU_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_QEMU_GTK)-gtk-clipboard \
 	--disable-guest-agent \
 	--disable-guest-agent-msi \
-	--disable-hax \
 	--disable-hvf \
 	--enable-iconv \
 	--disable-jack \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCH] host-qemu: Follow target qemu.
  2024-01-31 19:56 [ptxdist] [PATCH] qemu: Version bump. 8.1.4 -> 8.2.1 Christian Melki
@ 2024-01-31 19:56 ` Christian Melki
  2024-02-08 16:03   ` [ptxdist] [APPLIED] " Michael Olbrich
  2024-02-08 16:03 ` [ptxdist] [APPLIED] qemu: Version bump. 8.1.4 -> 8.2.1 Michael Olbrich
  1 sibling, 1 reply; 5+ messages in thread
From: Christian Melki @ 2024-01-31 19:56 UTC (permalink / raw)
  To: ptxdist

This requires the work done to move HOST_DTC and DTC from
platform configurations to hosttools_noprompt.␘

* Disable hax.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-qemu.in   | 1 +
 rules/host-qemu.make | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/host-qemu.in b/rules/host-qemu.in
index e8fa17e29..42b85a744 100644
--- a/rules/host-qemu.in
+++ b/rules/host-qemu.in
@@ -4,6 +4,7 @@ menuconfig HOST_QEMU
 	tristate
 	default y if ALLYES
 	prompt "host-side qemu                "
+	select HOST_DTC
 	select HOST_GLIB
 	select HOST_LIBCAP_NG
 	select HOST_LIBSLIRP
diff --git a/rules/host-qemu.make b/rules/host-qemu.make
index 8d377ffa5..416855daa 100644
--- a/rules/host-qemu.make
+++ b/rules/host-qemu.make
@@ -111,7 +111,6 @@ HOST_QEMU_CONF_OPT	:= \
 	--disable-gtk-clipboard \
 	--disable-guest-agent \
 	--disable-guest-agent-msi \
-	--disable-hax \
 	--disable-hvf \
 	--enable-iconv \
 	--disable-jack \
-- 
2.34.1




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [APPLIED] qemu: Version bump. 8.1.4 -> 8.2.1
  2024-01-31 19:56 [ptxdist] [PATCH] qemu: Version bump. 8.1.4 -> 8.2.1 Christian Melki
  2024-01-31 19:56 ` [ptxdist] [PATCH] host-qemu: Follow target qemu Christian Melki
@ 2024-02-08 16:03 ` Michael Olbrich
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2024-02-08 16:03 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as dd2ff313a64f5661d447770448fbf01405899f4a.

Michael

[sent from post-receive hook]

On Thu, 08 Feb 2024 17:03:29 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Notable changes, kernel 4.4+, deprecated HAX.
> I think qemu could use an options cleaning pass at some point.
> https://wiki.qemu.org/ChangeLog/8.2
> 
> * Remove hax option.
> 
> * Forward patchset. Applies cleanly.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240131195612.3120608-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/qemu-8.1.4/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch b/patches/qemu-8.2.1/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
> similarity index 100%
> rename from patches/qemu-8.1.4/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
> rename to patches/qemu-8.2.1/0100-9pfs-allow-real-symlinks-for-security_model-mapped-f.patch
> diff --git a/patches/qemu-8.1.4/0101-let-ninja-use-the-jobserver.patch b/patches/qemu-8.2.1/0101-let-ninja-use-the-jobserver.patch
> similarity index 100%
> rename from patches/qemu-8.1.4/0101-let-ninja-use-the-jobserver.patch
> rename to patches/qemu-8.2.1/0101-let-ninja-use-the-jobserver.patch
> diff --git a/patches/qemu-8.1.4/series b/patches/qemu-8.2.1/series
> similarity index 100%
> rename from patches/qemu-8.1.4/series
> rename to patches/qemu-8.2.1/series
> diff --git a/rules/qemu.make b/rules/qemu.make
> index 5ad69ee397f7..f3cab4174a74 100644
> --- a/rules/qemu.make
> +++ b/rules/qemu.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_QEMU) += qemu
>  #
>  # Paths and names
>  #
> -QEMU_VERSION	:= 8.1.4
> -QEMU_MD5	:= d5cf54ace6aabd619e89df301aed66e2
> +QEMU_VERSION	:= 8.2.1
> +QEMU_MD5	:= bda54248d773be2599df66f8995f10e1
>  QEMU		:= qemu-$(QEMU_VERSION)
>  QEMU_SUFFIX	:= tar.xz
>  QEMU_URL	:= https://download.qemu.org/$(QEMU).$(QEMU_SUFFIX)
> @@ -105,7 +105,6 @@ QEMU_CONF_OPT	:= \
>  	--$(call ptx/endis, PTXCONF_QEMU_GTK)-gtk-clipboard \
>  	--disable-guest-agent \
>  	--disable-guest-agent-msi \
> -	--disable-hax \
>  	--disable-hvf \
>  	--enable-iconv \
>  	--disable-jack \



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [APPLIED] host-qemu: Follow target qemu.
  2024-01-31 19:56 ` [ptxdist] [PATCH] host-qemu: Follow target qemu Christian Melki
@ 2024-02-08 16:03   ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2024-02-08 16:03 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as fad025d1281bad732bdf21ba9fb26f043db4a3b2.

Michael

[sent from post-receive hook]

On Thu, 08 Feb 2024 17:03:30 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> This requires the work done to move HOST_DTC and DTC from
> platform configurations to hosttools_noprompt.␘
> 
> * Disable hax.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240131195612.3120608-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-qemu.in b/rules/host-qemu.in
> index e8fa17e29a1c..42b85a744e15 100644
> --- a/rules/host-qemu.in
> +++ b/rules/host-qemu.in
> @@ -4,6 +4,7 @@ menuconfig HOST_QEMU
>  	tristate
>  	default y if ALLYES
>  	prompt "host-side qemu                "
> +	select HOST_DTC
>  	select HOST_GLIB
>  	select HOST_LIBCAP_NG
>  	select HOST_LIBSLIRP
> diff --git a/rules/host-qemu.make b/rules/host-qemu.make
> index 8d377ffa55f8..416855daadb4 100644
> --- a/rules/host-qemu.make
> +++ b/rules/host-qemu.make
> @@ -111,7 +111,6 @@ HOST_QEMU_CONF_OPT	:= \
>  	--disable-gtk-clipboard \
>  	--disable-guest-agent \
>  	--disable-guest-agent-msi \
> -	--disable-hax \
>  	--disable-hvf \
>  	--enable-iconv \
>  	--disable-jack \



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [APPLIED] host-qemu: Follow target qemu.
  2023-04-20 19:06 [ptxdist] [PATCH 2/2] host-qemu: Follow target qemu Christian Melki
@ 2023-05-02  7:05 ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2023-05-02  7:05 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 58edd9322388812bb638a31a07675c1c2e934212.

Michael

[sent from post-receive hook]

On Tue, 02 May 2023 09:05:54 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> * Remove deprecated configuration option.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230420190651.214377-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-qemu.make b/rules/host-qemu.make
> index c4d08b351333..2a89e11542ca 100644
> --- a/rules/host-qemu.make
> +++ b/rules/host-qemu.make
> @@ -133,7 +133,6 @@ HOST_QEMU_CONF_OPT	:= \
>  	--disable-libvduse \
>  	--disable-virglrenderer \
>  	--$(call ptx/endis, PTXCONF_HOST_QEMU_SYS)-virtfs \
> -	--disable-virtiofsd \
>  	--disable-vnc \
>  	--disable-vnc-jpeg \
>  	--disable-vnc-sasl \



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-02-08 16:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-31 19:56 [ptxdist] [PATCH] qemu: Version bump. 8.1.4 -> 8.2.1 Christian Melki
2024-01-31 19:56 ` [ptxdist] [PATCH] host-qemu: Follow target qemu Christian Melki
2024-02-08 16:03   ` [ptxdist] [APPLIED] " Michael Olbrich
2024-02-08 16:03 ` [ptxdist] [APPLIED] qemu: Version bump. 8.1.4 -> 8.2.1 Michael Olbrich
  -- strict thread matches above, loose matches on Subject: below --
2023-04-20 19:06 [ptxdist] [PATCH 2/2] host-qemu: Follow target qemu Christian Melki
2023-05-02  7:05 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox