blob: 17ffc6fd487565281694dbe84759de0347d2f52c [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 5506296ef55a6e4916febab63805ddf2d5a5293c Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:11:22 +0000
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH 07/30] readlib: Add OECORE_KNOWN_INTERPRETER_NAMES to known
5 names
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08006
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
Brad Bishop19323692019-04-05 15:28:33 -040020index c9743e6692..6307f918fc 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021--- 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[] =
Brad Bishop19323692019-04-05 15:28:33 -040031--
322.20.1
33