aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include/xen-foreign/structs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/include/xen-foreign/structs.py')
-rw-r--r--tools/include/xen-foreign/structs.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/include/xen-foreign/structs.py b/tools/include/xen-foreign/structs.py
index 476eb85f06..3d9f2fe956 100644
--- a/tools/include/xen-foreign/structs.py
+++ b/tools/include/xen-foreign/structs.py
@@ -58,3 +58,8 @@ defines = [ "__arm__",
"XEN_LEGACY_MAX_VCPUS",
"MAX_GUEST_CMDLINE" ];
+# Architectures which must be compatible, i.e. identical
+compat_arches = {
+ 'arm32': 'arm64',
+ 'arm64': 'arm32',
+}