blob: 25c046f5cd730b297a544b2b678726620d9d2b53 [file] [log] [blame]
Andrew Geissler635e0e42020-08-21 15:58:33 -05001From 70731329feb7ba20364aa37aed83d920de97f028 Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:11:22 +0000
Andrew Geissler635e0e42020-08-21 15:58:33 -05004Subject: [PATCH 28/29] readlib: Add OECORE_KNOWN_INTERPRETER_NAMES to known
5 names
Andrew Geissler82c905d2020-04-13 13:39:40 -05006
7This bolts in a hook for OE to pass its own version of interpreter
8names into glibc especially for multilib case, where it differs from any
9other distros
10
11Upstream-Status: Inappropriate [OE specific]
12
13Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15---
16 elf/readlib.c | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/elf/readlib.c b/elf/readlib.c
20index 994a4426a1..baabf099b1 100644
21--- a/elf/readlib.c
22+++ b/elf/readlib.c
23@@ -51,6 +51,7 @@ static struct known_names interpreters[] =
24 #ifdef SYSDEP_KNOWN_INTERPRETER_NAMES
25 SYSDEP_KNOWN_INTERPRETER_NAMES
26 #endif
27+ OECORE_KNOWN_INTERPRETER_NAMES
28 };
29
30 static struct known_names known_libs[] =
Andrew Geissler635e0e42020-08-21 15:58:33 -050031--
322.27.0
33