Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] qemu : fixed firmware path
@ 2020-07-19  9:33 pandom79
  2020-07-19  9:53 ` sgn
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: pandom79 @ 2020-07-19  9:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 666 bytes --]

There is a new pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in /usr/lib/qemu/firmware beacuse it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 1132 bytes --]

From a59ada6905a44cbfe73eb70a812d95236835bb22 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..e1635cf560b 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=5.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -62,7 +62,7 @@ do_configure() {
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
-		--enable-pie --localstatedir=/var --datadir=/usr/lib --enable-docs \
+		--enable-pie --localstatedir=/var --enable-docs \
 		$(vopt_enable virgl virglrenderer) $(vopt_enable opengl) $(vopt_enable spice) \
 		${want_sdl} \
 		$(vopt_enable smartcard) \

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
@ 2020-07-19  9:53 ` sgn
  2020-07-19  9:54 ` sgn
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: sgn @ 2020-07-19  9:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 155 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-660618583

Comment:
Blocked by #23601 

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
  2020-07-19  9:53 ` sgn
@ 2020-07-19  9:54 ` sgn
  2020-07-19 10:30 ` [PR PATCH] [Closed]: " pandom79
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: sgn @ 2020-07-19  9:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-660618583

Comment:
Blocked by #23601, supersedes #23597, fixes #23495 

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (2 preceding siblings ...)
  2020-07-19 10:30 ` [PR PATCH] [Closed]: " pandom79
@ 2020-07-19 10:30 ` pandom79
  2020-07-20 11:49 ` [PR PATCH] [Updated] " pandom79
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-19 10:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 264 bytes --]

New comment by pandom79 on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-660622697

Comment:
I spoke with phrdina via email a few days ago.
I did't know that he already create a pull request.
We can close this pr.

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

* Re: [PR PATCH] [Closed]: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
  2020-07-19  9:53 ` sgn
  2020-07-19  9:54 ` sgn
@ 2020-07-19 10:30 ` pandom79
  2020-07-19 10:30 ` pandom79
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-19 10:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 520 bytes --]

There's a closed pull request on the void-packages repository

qemu : fixed firmware path
https://github.com/void-linux/void-packages/pull/23651

Description:
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




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

* Re: [PR PATCH] [Updated] qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (3 preceding siblings ...)
  2020-07-19 10:30 ` pandom79
@ 2020-07-20 11:49 ` pandom79
  2020-07-20 11:51 ` pandom79
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 11:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

There is an updated pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 1132 bytes --]

From a59ada6905a44cbfe73eb70a812d95236835bb22 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..e1635cf560b 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=5.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -62,7 +62,7 @@ do_configure() {
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
-		--enable-pie --localstatedir=/var --datadir=/usr/lib --enable-docs \
+		--enable-pie --localstatedir=/var --enable-docs \
 		$(vopt_enable virgl virglrenderer) $(vopt_enable opengl) $(vopt_enable spice) \
 		${want_sdl} \
 		$(vopt_enable smartcard) \

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

* Re: [PR PATCH] [Updated] qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (4 preceding siblings ...)
  2020-07-20 11:49 ` [PR PATCH] [Updated] " pandom79
@ 2020-07-20 11:51 ` pandom79
  2020-07-20 11:53 ` pandom79
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 11:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

There is an updated pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 1132 bytes --]

From a59ada6905a44cbfe73eb70a812d95236835bb22 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..e1635cf560b 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=5.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -62,7 +62,7 @@ do_configure() {
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
-		--enable-pie --localstatedir=/var --datadir=/usr/lib --enable-docs \
+		--enable-pie --localstatedir=/var --enable-docs \
 		$(vopt_enable virgl virglrenderer) $(vopt_enable opengl) $(vopt_enable spice) \
 		${want_sdl} \
 		$(vopt_enable smartcard) \

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

* Re: [PR PATCH] [Updated] qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (5 preceding siblings ...)
  2020-07-20 11:51 ` pandom79
@ 2020-07-20 11:53 ` pandom79
  2020-07-20 11:54 ` pandom79
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 11:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

There is an updated pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 3378 bytes --]

From a59ada6905a44cbfe73eb70a812d95236835bb22 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH 1/3] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..e1635cf560b 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=5.0.0
-revision=2
+revision=3
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -62,7 +62,7 @@ do_configure() {
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
-		--enable-pie --localstatedir=/var --datadir=/usr/lib --enable-docs \
+		--enable-pie --localstatedir=/var --enable-docs \
 		$(vopt_enable virgl virglrenderer) $(vopt_enable opengl) $(vopt_enable spice) \
 		${want_sdl} \
 		$(vopt_enable smartcard) \

From d64600e30744c327debdf52f92c5ad913a3f9998 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Mon, 20 Jul 2020 13:50:49 +0200
Subject: [PATCH 2/3] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index e1635cf560b..caa2348fcfd 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -1,7 +1,7 @@
 # Template file for 'qemu'
 pkgname=qemu
 version=5.0.0
-revision=3
+revision=2
 short_desc="Open Source Processor Emulator"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -62,7 +62,7 @@ do_configure() {
 		--disable-xen --enable-tpm \
 		--enable-vhost-net --enable-vnc-png --enable-virtfs \
 		--enable-libusb --disable-glusterfs --enable-snappy --enable-usb-redir \
-		--enable-pie --localstatedir=/var --enable-docs \
+		--enable-pie --localstatedir=/var --datadir=/usr/lib --enable-docs \
 		$(vopt_enable virgl virglrenderer) $(vopt_enable opengl) $(vopt_enable spice) \
 		${want_sdl} \
 		$(vopt_enable smartcard) \
@@ -75,6 +75,7 @@ do_build() {
 	make ${makejobs}
 }
 do_install() {
+	
 	# Remove our strip(1) wrapper... E2BIG.
 	rm -f ${XBPS_WRAPPERDIR}/strip
 
@@ -82,6 +83,11 @@ do_install() {
 	# qemu-bridge-helper must be setuid for non privileged users.
 	chmod u+s ${DESTDIR}/usr/libexec/qemu-bridge-helper
 
+	#Symbolic link /usr/share/qemu/firmware -> /usr/lib/qemu/firmware
+	#to permit libvirtd to find the firmwares
+	vmkdir usr/share/qemu
+	ln -s /usr/lib/qemu/firmware ${DESTDIR}/usr/share/qemu/firmware 
+	
 	vsv qemu-ga
 }
 

From 31a7abc5407780b5ec821caf4379b65420ebcd6e Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Mon, 20 Jul 2020 13:52:44 +0200
Subject: [PATCH 3/3] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index caa2348fcfd..eb90aa1b12e 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -75,7 +75,6 @@ do_build() {
 	make ${makejobs}
 }
 do_install() {
-	
 	# Remove our strip(1) wrapper... E2BIG.
 	rm -f ${XBPS_WRAPPERDIR}/strip
 

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

* Re: [PR PATCH] [Updated] qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (6 preceding siblings ...)
  2020-07-20 11:53 ` pandom79
@ 2020-07-20 11:54 ` pandom79
  2020-07-20 11:55 ` pandom79
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 11:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

There is an updated pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 801 bytes --]

From 67c51912613a50f3607468e83b42fc935f7ae216 Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..eb90aa1b12e 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -82,6 +82,11 @@ do_install() {
 	# qemu-bridge-helper must be setuid for non privileged users.
 	chmod u+s ${DESTDIR}/usr/libexec/qemu-bridge-helper
 
+	#Symbolic link /usr/share/qemu/firmware -> /usr/lib/qemu/firmware
+	#to permit libvirtd to find the firmwares
+	vmkdir usr/share/qemu
+	ln -s /usr/lib/qemu/firmware ${DESTDIR}/usr/share/qemu/firmware 
+	
 	vsv qemu-ga
 }
 

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (7 preceding siblings ...)
  2020-07-20 11:54 ` pandom79
@ 2020-07-20 11:55 ` pandom79
  2020-07-20 13:51 ` [PR PATCH] [Updated] " pandom79
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 11:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 173 bytes --]

New comment by pandom79 on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-660982036

Comment:
the symbolic link works for me.

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

* Re: [PR PATCH] [Updated] qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (8 preceding siblings ...)
  2020-07-20 11:55 ` pandom79
@ 2020-07-20 13:51 ` pandom79
  2020-07-20 14:04 ` sgn
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 13:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

There is an updated pull request by pandom79 against master on the void-packages repository

https://github.com/pandom79/void-packages qemu
https://github.com/void-linux/void-packages/pull/23651

qemu : fixed firmware path
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




A patch file from https://github.com/void-linux/void-packages/pull/23651.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qemu-23651.patch --]
[-- Type: text/x-diff, Size: 799 bytes --]

From fc54d2a8c6494ba3b6a1e8017cee03ebc1c9863a Mon Sep 17 00:00:00 2001
From: Domenico Panella <pandom79@gmail.com>
Date: Sun, 19 Jul 2020 11:19:22 +0200
Subject: [PATCH] qemu : fixed firmware path

---
 srcpkgs/qemu/template | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template
index 5a32c5c1dd3..c7d5f856816 100644
--- a/srcpkgs/qemu/template
+++ b/srcpkgs/qemu/template
@@ -82,6 +82,11 @@ do_install() {
 	# qemu-bridge-helper must be setuid for non privileged users.
 	chmod u+s ${DESTDIR}/usr/libexec/qemu-bridge-helper
 
+	#Symbolic link /usr/share/qemu/firmware -> /usr/lib/qemu/firmware
+	#to permit libvirtd to find the firmwares
+	vmkdir usr/share/qemu
+	ln -s /usr/lib/qemu/firmware ${DESTDIR}/usr/share/qemu/firmware
+
 	vsv qemu-ga
 }
 

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (9 preceding siblings ...)
  2020-07-20 13:51 ` [PR PATCH] [Updated] " pandom79
@ 2020-07-20 14:04 ` sgn
  2020-07-20 14:14 ` pandom79
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: sgn @ 2020-07-20 14:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-661060275

Comment:
@pandom79 We'll use your old change instead.

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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (10 preceding siblings ...)
  2020-07-20 14:04 ` sgn
@ 2020-07-20 14:14 ` pandom79
  2020-07-20 14:15 ` pandom79
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 14:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 219 bytes --]

New comment by pandom79 on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-661066587

Comment:
in fact, it seem more clean as workaround, however with a symlink it works.


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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (11 preceding siblings ...)
  2020-07-20 14:14 ` pandom79
@ 2020-07-20 14:15 ` pandom79
  2020-09-14  8:36 ` pandom79
  2020-09-14  8:36 ` [PR PATCH] [Closed]: " pandom79
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-07-20 14:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 220 bytes --]

New comment by pandom79 on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-661066587

Comment:
in fact, it seems more clean as workaround, however with a symlink it works.


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

* Re: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (12 preceding siblings ...)
  2020-07-20 14:15 ` pandom79
@ 2020-09-14  8:36 ` pandom79
  2020-09-14  8:36 ` [PR PATCH] [Closed]: " pandom79
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-09-14  8:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 244 bytes --]

New comment by pandom79 on void-packages repository

https://github.com/void-linux/void-packages/pull/23651#issuecomment-691908298

Comment:
Close this pr. It has been resolved by [24884](https://github.com/void-linux/void-packages/pull/24884)

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

* Re: [PR PATCH] [Closed]: qemu : fixed firmware path
  2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
                   ` (13 preceding siblings ...)
  2020-09-14  8:36 ` pandom79
@ 2020-09-14  8:36 ` pandom79
  14 siblings, 0 replies; 16+ messages in thread
From: pandom79 @ 2020-09-14  8:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 520 bytes --]

There's a closed pull request on the void-packages repository

qemu : fixed firmware path
https://github.com/void-linux/void-packages/pull/23651

Description:
Hi,
the actual qemu version is built wrong. 
When libvirt start, it searchs firmware in **/usr/share/qemu/firmware** but the firmwares are installed in **/usr/lib/qemu/firmware** because it has been set **--data-lib=/usr/lib**.
Deleting this setting , now libvirt works correctly and i can choice uefi firmware.
Before this was not possible.
Regards




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

end of thread, other threads:[~2020-09-14  8:36 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-19  9:33 [PR PATCH] qemu : fixed firmware path pandom79
2020-07-19  9:53 ` sgn
2020-07-19  9:54 ` sgn
2020-07-19 10:30 ` [PR PATCH] [Closed]: " pandom79
2020-07-19 10:30 ` pandom79
2020-07-20 11:49 ` [PR PATCH] [Updated] " pandom79
2020-07-20 11:51 ` pandom79
2020-07-20 11:53 ` pandom79
2020-07-20 11:54 ` pandom79
2020-07-20 11:55 ` pandom79
2020-07-20 13:51 ` [PR PATCH] [Updated] " pandom79
2020-07-20 14:04 ` sgn
2020-07-20 14:14 ` pandom79
2020-07-20 14:15 ` pandom79
2020-09-14  8:36 ` pandom79
2020-09-14  8:36 ` [PR PATCH] [Closed]: " pandom79

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).