Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Sep 2015 01:45:43 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r288083 - head/usr.bin/elfdump
Message-ID:  <201509220145.t8M1jhLh059252@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509220145.t8M1jhLh059252>