All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/qemu: virtfs needs system
@ 2021-07-10 15:54 Fabrice Fontaine
  2021-07-16 21:19 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-07-10 15:54 UTC (permalink / raw)
  To: buildroot

build of qemu with virtfs but without system fails since bump to version
6.0.0 in commit	6b86c9335fc3ff381878156c6243454d4b688df9:

../meson.build:1077:6: ERROR: Problem encountered: virtio-9p (virtfs) needs system emulation support

Indeed virtfs needs system support since switch to meson in
https://gitlab.com/qemu-project/qemu/-/commit/69202b406e3a42621a063c3afe80f580d343f59e

Fixes:
 - http://autobuild.buildroot.org/results/ee4b2bbc08c58dc972d285eafa43b7ad6586f270

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/qemu/Config.in.host | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/qemu/Config.in.host b/package/qemu/Config.in.host
index 3163797067..c176001396 100644
--- a/package/qemu/Config.in.host
+++ b/package/qemu/Config.in.host
@@ -82,6 +82,8 @@ config BR2_PACKAGE_HOST_QEMU_VDE2
 
 config BR2_PACKAGE_HOST_QEMU_VIRTFS
 	bool "Virtual filesystem support"
+	depends on BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS
+	select BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE
 	help
 	  Enables support for virtual filesystem in Qemu allowing
 	  shared filesystem between Qemu and its emulated target.
-- 
2.30.2

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

* [Buildroot] [PATCH 1/1] package/qemu: virtfs needs system
  2021-07-10 15:54 [Buildroot] [PATCH 1/1] package/qemu: virtfs needs system Fabrice Fontaine
@ 2021-07-16 21:19 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2021-07-16 21:19 UTC (permalink / raw)
  To: buildroot

On Sat, 10 Jul 2021 17:54:09 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

>  config BR2_PACKAGE_HOST_QEMU_VIRTFS
>  	bool "Virtual filesystem support"
> +	depends on BR2_PACKAGE_HOST_QEMU_SYSTEM_ARCH_SUPPORTS
> +	select BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE

I think a:

	depends on BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE

made more sense here. Indeed, if the user wants the "user mode", it's a
bit weird to force the user to also have the "system mode". I believe a
"depends on" in this case is more appropriate.

Applied with this change. Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2021-07-16 21:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-10 15:54 [Buildroot] [PATCH 1/1] package/qemu: virtfs needs system Fabrice Fontaine
2021-07-16 21:19 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.