From fe314603a35e41b6318fa95e05953a81eaad8a91 Mon Sep 17 00:00:00 2001 From: kettenis Date: Fri, 28 Oct 2022 15:26:46 +0000 Subject: [PATCH] Decode DT_MIPS_RLD_MAP_REL. ok deraadt@ --- gnu/usr.bin/binutils-2.17/binutils/readelf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/usr.bin/binutils-2.17/binutils/readelf.c b/gnu/usr.bin/binutils-2.17/binutils/readelf.c index d0f16f3b6dd..a45527f65fc 100644 --- a/gnu/usr.bin/binutils-2.17/binutils/readelf.c +++ b/gnu/usr.bin/binutils-2.17/binutils/readelf.c @@ -1621,6 +1621,7 @@ get_mips_dynamic_type (unsigned long type) case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE"; case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE"; case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC"; + case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL"; default: return NULL; } -- 2.20.1