From 06a44264d61e468a8f21d04c880ac558a200d80d Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Wed, 27 Oct 2021 13:05:00 +0900 Subject: [PATCH] readelf: Fix missing -d option --- apps/readelf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/readelf.c b/apps/readelf.c index 4778757f..5252a91e 100644 --- a/apps/readelf.c +++ b/apps/readelf.c @@ -454,6 +454,9 @@ int main(int argc, char * argv[]) { case 'a': show_bits |= SHOW_FILE_HEADER | SHOW_SECTION_HEADERS | SHOW_PROGRAM_HEADERS | SHOW_SYMBOLS | SHOW_DYNAMIC | SHOW_RELOCATIONS; break; + case 'd': + show_bits |= SHOW_DYNAMIC; + break; case 'h': show_bits |= SHOW_FILE_HEADER; break;