From 050747f2c3fb7113fb2b7d6f90ac2f6ef22433c7 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 23 Sep 2015 00:32:38 +0000 Subject: [PATCH] elfdump: report MIPS ELF section type SHT_MIPS_REGINFO Sponsored by: The FreeBSD Foundation --- usr.bin/elfdump/elfdump.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c index 33cc9c49b2ea..040b5e78cd6f 100644 --- a/usr.bin/elfdump/elfdump.c +++ b/usr.bin/elfdump/elfdump.c @@ -379,6 +379,7 @@ sh_types(uint64_t machine, uint64_t sht) { break; case EM_MIPS: switch (sht) { + case SHT_MIPS_REGINFO: return "SHT_MIPS_REGINFO"; case SHT_MIPS_OPTIONS: return "SHT_MIPS_OPTIONS"; case SHT_MIPS_ABIFLAGS: return "SHT_MIPS_ABIFLAGS"; }