From 4db90148e170139a889caba25a48a5886f9b2f72 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 22 Sep 2015 01:45:43 +0000 Subject: elfdump: report MIPS-specific section type SHT_MIPS_ABIFLAGS Sponsored by: The FreeBSD Foundation --- usr.bin/elfdump/elfdump.c | 1 + 1 file changed, 1 insertion(+) (limited to 'usr.bin/elfdump') diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c index 2147fcb3179b..33cc9c49b2ea 100644 --- a/usr.bin/elfdump/elfdump.c +++ b/usr.bin/elfdump/elfdump.c @@ -380,6 +380,7 @@ sh_types(uint64_t machine, uint64_t sht) { case EM_MIPS: switch (sht) { case SHT_MIPS_OPTIONS: return "SHT_MIPS_OPTIONS"; + case SHT_MIPS_ABIFLAGS: return "SHT_MIPS_ABIFLAGS"; } break; } -- cgit v1.2.3