We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e6a44 commit 4d2e607Copy full SHA for 4d2e607
xendump.c
@@ -2055,6 +2055,16 @@ xc_core_elf_verify(char *file, char *buf)
2055
goto bailout;
2056
break;
2057
2058
+ case EM_ARM:
2059
+ if (machine_type_mismatch(file, "ARM", NULL, 0))
2060
+ goto bailout;
2061
+ break;
2062
+
2063
+ case EM_AARCH64:
2064
+ if (machine_type_mismatch(file, "ARM64", NULL, 0))
2065
2066
2067
2068
default:
2069
if (machine_type_mismatch(file, "(unknown)", NULL, 0))
2070
0 commit comments