diff options
Diffstat (limited to 'kexec/arch/s390/kexec-s390.c')
-rw-r--r-- | kexec/arch/s390/kexec-s390.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/kexec/arch/s390/kexec-s390.c b/kexec/arch/s390/kexec-s390.c index 94a5d9e..15c2837 100644 --- a/kexec/arch/s390/kexec-s390.c +++ b/kexec/arch/s390/kexec-s390.c @@ -14,7 +14,6 @@ #include <stdint.h> #include <string.h> #include <getopt.h> -#include <sys/utsname.h> #include "../../kexec.h" #include "../../kexec-syscall.h" #include "kexec-s390.h" @@ -95,9 +94,14 @@ int arch_process_options(int argc, char **argv) return 0; } +const struct arch_map_entry arches[] = { + { "s390", KEXEC_ARCH_S390 }, + { "s390x", KEXEC_ARCH_S390 }, + { 0 }, +}; + int arch_compat_trampoline(struct kexec_info *info) { - info->kexec_flags |= KEXEC_ARCH_S390; return 0; } |