svn commit: r294450 - stable/10/usr.bin/elfdump

Ed Maste emaste at FreeBSD.org
Wed Jan 20 17:40:12 UTC 2016


Author: emaste
Date: Wed Jan 20 17:40:11 2016
New Revision: 294450
URL: https://svnweb.freebsd.org/changeset/base/294450

Log:
  MFC r288083, r288138: elfdump: report MIPS-specific ELF section types

Modified:
  stable/10/usr.bin/elfdump/elfdump.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/elfdump/elfdump.c
==============================================================================
--- stable/10/usr.bin/elfdump/elfdump.c	Wed Jan 20 17:38:21 2016	(r294449)
+++ stable/10/usr.bin/elfdump/elfdump.c	Wed Jan 20 17:40:11 2016	(r294450)
@@ -379,7 +379,9 @@ 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";
 			}
 			break;
 		}


More information about the svn-src-all mailing list