blob: 9f9f503a1e2cb15972382ef09a54e520a5e06d91 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From b2ec111dc3a42d9dce71c903524724ae82ff22d8 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 3 Aug 2018 09:55:12 -0700
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH 05/30] nativesdk-glibc: Make relocatable install for locales
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005
6The glibc locale path is hard-coded to the install prefix, but in SDKs we need
7to be able to relocate the binaries. Expand the strings to 4K and put them in a
8magic segment that we can relocate at install time.
9
10Upstream-Status: Inappropriate (OE-specific)
11
12Signed-off-by: Ross Burton <ross.burton@intel.com>
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 locale/findlocale.c | 4 ++--
16 locale/loadarchive.c | 2 +-
17 locale/localeinfo.h | 2 +-
18 3 files changed, 4 insertions(+), 4 deletions(-)
19
20diff --git a/locale/findlocale.c b/locale/findlocale.c
Brad Bishop19323692019-04-05 15:28:33 -040021index 9af605bd64..b2b0a3f93b 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022--- a/locale/findlocale.c
23+++ b/locale/findlocale.c
24@@ -56,7 +56,7 @@ struct __locale_data *const _nl_C[] attribute_hidden =
25 which are somehow addressed. */
26 struct loaded_l10nfile *_nl_locale_file_list[__LC_LAST];
27
28-const char _nl_default_locale_path[] attribute_hidden = COMPLOCALEDIR;
29+char _nl_default_locale_path[4096] attribute_hidden __attribute__ ((section (".gccrelocprefix"))) = COMPLOCALEDIR;
30
31 /* Checks if the name is actually present, that is, not NULL and not
32 empty. */
33@@ -167,7 +167,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len,
34
35 /* Nothing in the archive. Set the default path to search below. */
36 locale_path = _nl_default_locale_path;
37- locale_path_len = sizeof _nl_default_locale_path;
38+ locale_path_len = strlen(locale_path) + 1;
39 }
40 else
41 /* We really have to load some data. First see whether the name is
42diff --git a/locale/loadarchive.c b/locale/loadarchive.c
Brad Bishop19323692019-04-05 15:28:33 -040043index 803c1cf2a4..9023f475b8 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080044--- a/locale/loadarchive.c
45+++ b/locale/loadarchive.c
46@@ -42,7 +42,7 @@
47
48
49 /* Name of the locale archive file. */
50-static const char archfname[] = COMPLOCALEDIR "/locale-archive";
51+static const char archfname[4096] __attribute__ ((section (".gccrelocprefix"))) = COMPLOCALEDIR "/locale-archive";
52
53 /* Size of initial mapping window, optimal if large enough to
54 cover the header plus the initial locale. */
55diff --git a/locale/localeinfo.h b/locale/localeinfo.h
Brad Bishop19323692019-04-05 15:28:33 -040056index 7c1cc3eecb..53cb8bfc59 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080057--- a/locale/localeinfo.h
58+++ b/locale/localeinfo.h
59@@ -325,7 +325,7 @@ _nl_lookup_word (locale_t l, int category, int item)
60 }
61
62 /* Default search path if no LOCPATH environment variable. */
63-extern const char _nl_default_locale_path[] attribute_hidden;
64+extern char _nl_default_locale_path[4096] attribute_hidden;
65
66 /* Load the locale data for CATEGORY from the file specified by *NAME.
67 If *NAME is "", use environment variables as specified by POSIX, and
Brad Bishop19323692019-04-05 15:28:33 -040068--
692.20.1
70