blob: 086a73dd26b5606570c73acaee7358f97a1ce449 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 61129ef3ee735b300604f75d50e01cb29f4387f4 Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:11:22 +0000
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05004Subject: [PATCH 06/24] readlib: Add OECORE_KNOWN_INTERPRETER_NAMES to known
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005 names
6
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 7fd5b8a..2f5da9f 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[] =
31--
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500322.6.4
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033