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

Rui Paulo rpaulo at FreeBSD.org
Wed Aug 11 18:02:48 UTC 2010


Author: rpaulo
Date: Wed Aug 11 18:02:48 2010
New Revision: 211188
URL: http://svn.freebsd.org/changeset/base/211188

Log:
  Teach elfdump(1) about the SUNW_dof section.
  
  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	Wed Aug 11 18:00:45 2010	(r211187)
+++ head/usr.bin/elfdump/elfdump.c	Wed Aug 11 18:02:48 2010	(r211188)
@@ -322,6 +322,7 @@ sh_types(u_int64_t sht) {
 	case 18: return "SHT_SYMTAB_SHNDX";
 	/* 0x60000000 - 0x6fffffff operating system-specific semantics */
 	case 0x6ffffff0: return "XXX:VERSYM";
+	case 0x6ffffff4: return "SHT_SUNW_dof";
 	case 0x6ffffff7: return "SHT_GNU_LIBLIST";
 	case 0x6ffffffc: return "XXX:VERDEF";
 	case 0x6ffffffd: return "SHT_SUNW(GNU)_verdef";


More information about the svn-src-all mailing list