svn commit: r288083 - head/usr.bin/elfdump

Ed Maste emaste at FreeBSD.org
Tue Sep 22 01:45:44 UTC 2015


Author: emaste
Date: Tue Sep 22 01:45:43 2015
New Revision: 288083
URL: https://svnweb.freebsd.org/changeset/base/288083

Log:
  elfdump: report MIPS-specific section type SHT_MIPS_ABIFLAGS
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.bin/elfdump/elfdump.c

Modified: head/usr.bin/elfdump/elfdump.c
==============================================================================
--- head/usr.bin/elfdump/elfdump.c	Tue Sep 22 01:31:01 2015	(r288082)
+++ head/usr.bin/elfdump/elfdump.c	Tue Sep 22 01:45:43 2015	(r288083)
@@ -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;
 		}


More information about the svn-src-head mailing list