From 67a815b8749fbd5c99c29d24b4e699b1d618ddbf Mon Sep 17 00:00:00 2001 From: Dave Anderson Date: Wed, 4 May 2016 14:34:53 -0400 Subject: [PATCH] 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) --- ramdump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ramdump.c b/ramdump.c index 941851c..4c4a920 100644 --- a/ramdump.c +++ b/ramdump.c @@ -186,6 +186,8 @@ char *ramdump_to_elf(void) e_machine = EM_AARCH64; else if (machine_type("MIPS")) e_machine = EM_MIPS; + else if (machine_type("X86_64")) + e_machine = EM_X86_64; else error(FATAL, "ramdump: unsupported machine type: %s\n", MACHINE_TYPE);