readelf: include notes (-n) and unwind (-u) in --all/-a

This matches the GNU and LLVM versions of readelf.

As markj noted in the review -u is not actually implemented yet and has
no effect.  The option is accepted and just ignored.

Reported by:	andrew
Reviewed by:	andrew, markj
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D32003
This commit is contained in:
Ed Maste 2021-09-17 08:06:27 -04:00
parent ac8af19380
commit f161abf9f2
2 changed files with 4 additions and 2 deletions

View file

@ -24,7 +24,7 @@
.\"
.\" $Id: readelf.1 3753 2019-06-28 01:13:13Z emaste $
.\"
.Dd October 31, 2020
.Dd September 17, 2021
.Dt READELF 1
.Os
.Sh NAME
@ -76,8 +76,10 @@ Turn on the following flags:
.Fl h ,
.Fl I ,
.Fl l ,
.Fl n ,
.Fl r ,
.Fl s ,
.Fl u ,
.Fl A ,
.Fl S
and

View file

@ -7788,7 +7788,7 @@ main(int argc, char **argv)
break;
case 'a':
re->options |= RE_AA | RE_D | RE_G | RE_H | RE_II |
RE_L | RE_R | RE_SS | RE_S | RE_VV;
RE_L | RE_N | RE_R | RE_SS | RE_S | RE_U | RE_VV;
break;
case 'c':
re->options |= RE_C;