aboutsummaryrefslogtreecommitdiff
path: root/hw/xen/meson.build
diff options
context:
space:
mode:
authorVikram Garhwal <vikram.garhwal@amd.com>2023-06-14 17:03:29 -0700
committerStefano Stabellini <stefano.stabellini@amd.com>2023-06-15 16:45:58 -0700
commite7218dd57cb60cb03310a989149963be8c1da4fe (patch)
treeb521f01c080e854b22a2e294afddcd22e155e08d /hw/xen/meson.build
parent7efd65423ab22e6f5890ca08ae40c84d6660242f (diff)
downloadqemu-e7218dd57cb60cb03310a989149963be8c1da4fe.zip
qemu-e7218dd57cb60cb03310a989149963be8c1da4fe.tar.gz
qemu-e7218dd57cb60cb03310a989149963be8c1da4fe.tar.bz2
hw/i386/xen/: move xen-mapcache.c to hw/xen/
xen-mapcache.c contains common functions which can be used for enabling Xen on aarch64 with IOREQ handling. Moving it out from hw/i386/xen to hw/xen to make it accessible for both aarch64 and x86. Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com> Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com> Reviewed-by: Paul Durrant <paul@xen.org>
Diffstat (limited to 'hw/xen/meson.build')
-rw-r--r--hw/xen/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/xen/meson.build b/hw/xen/meson.build
index 19c6aab..202752e 100644
--- a/hw/xen/meson.build
+++ b/hw/xen/meson.build
@@ -26,3 +26,7 @@ else
endif
specific_ss.add_all(when: ['CONFIG_XEN', xen], if_true: xen_specific_ss)
+
+xen_ss = ss.source_set()
+
+xen_ss.add(when: 'CONFIG_XEN', if_true: files('xen-mapcache.c'))