mirror of
https://github.com/crash-utility/crash
synced 2025-04-01 23:00:52 +00:00
Added support for x86_64 ramdump files. Without the patch, the crash
session fails immediately with the message "ramdump: unsupported machine type: X86_64". (anderson@redhat.com)
This commit is contained in:
parent
7eb61b3e7b
commit
67a815b874
@ -186,6 +186,8 @@ char *ramdump_to_elf(void)
|
|||||||
e_machine = EM_AARCH64;
|
e_machine = EM_AARCH64;
|
||||||
else if (machine_type("MIPS"))
|
else if (machine_type("MIPS"))
|
||||||
e_machine = EM_MIPS;
|
e_machine = EM_MIPS;
|
||||||
|
else if (machine_type("X86_64"))
|
||||||
|
e_machine = EM_X86_64;
|
||||||
else
|
else
|
||||||
error(FATAL, "ramdump: unsupported machine type: %s\n",
|
error(FATAL, "ramdump: unsupported machine type: %s\n",
|
||||||
MACHINE_TYPE);
|
MACHINE_TYPE);
|
||||||
|
Loading…
Reference in New Issue
Block a user