mirror of
https://github.com/qemu/qemu.git
synced 2025-08-14 20:31:47 +00:00

Add support for getting basic device information. Originally-by: John Johnson <john.g.johnson@oracle.com> Signed-off-by: Elena Ufimtseva <elena.ufimtseva@oracle.com> Signed-off-by: Jagannathan Raman <jag.raman@oracle.com> Signed-off-by: John Levon <john.levon@nutanix.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/qemu-devel/20250625193012.2316242-6-john.levon@nutanix.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
12 lines
226 B
Meson
12 lines
226 B
Meson
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
vfio_user_ss = ss.source_set()
|
|
vfio_user_ss.add(files(
|
|
'container.c',
|
|
'device.c',
|
|
'pci.c',
|
|
'proxy.c',
|
|
))
|
|
|
|
system_ss.add_all(when: 'CONFIG_VFIO_USER', if_true: vfio_user_ss)
|