summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/sdk.py
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-03-01 18:26:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-01 22:18:47 +0000
commitde4b8febd8ae1c57742bd3452b6889814b2fd3ef (patch)
treef7b7b06d9ad8b7b4bd2e57a0b3eee82157b0d1aa /meta/lib/oe/sdk.py
parent2f5641505944983bb931fd373f7d625eb6ce6fce (diff)
downloadpoky-de4b8febd8ae1c57742bd3452b6889814b2fd3ef.tar.gz
sdk: generate locale archive and remove packages
(From OE-Core rev: c6f1010a47df33b40320aa5784181b659a3254d7) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/sdk.py')
-rw-r--r--meta/lib/oe/sdk.py56
1 files changed, 54 insertions, 2 deletions
diff --git a/meta/lib/oe/sdk.py b/meta/lib/oe/sdk.py
index aa6597a849..76fe02c37b 100644
--- a/meta/lib/oe/sdk.py
+++ b/meta/lib/oe/sdk.py
@@ -7,6 +7,51 @@ import shutil
7import glob 7import glob
8import traceback 8import traceback
9 9
10def generate_locale_archive(d, rootfs):
11 # Pretty sure we don't need this for SDK archive generation but
12 # keeping it to be safe...
13 target_arch = d.getVar('SDK_ARCH')
14 locale_arch_options = { \
15 "arm": ["--uint32-align=4", "--little-endian"],
16 "armeb": ["--uint32-align=4", "--big-endian"],
17 "aarch64": ["--uint32-align=4", "--little-endian"],
18 "aarch64_be": ["--uint32-align=4", "--big-endian"],
19 "sh4": ["--uint32-align=4", "--big-endian"],
20 "powerpc": ["--uint32-align=4", "--big-endian"],
21 "powerpc64": ["--uint32-align=4", "--big-endian"],
22 "mips": ["--uint32-align=4", "--big-endian"],
23 "mipsisa32r6": ["--uint32-align=4", "--big-endian"],
24 "mips64": ["--uint32-align=4", "--big-endian"],
25 "mipsisa64r6": ["--uint32-align=4", "--big-endian"],
26 "mipsel": ["--uint32-align=4", "--little-endian"],
27 "mipsisa32r6el": ["--uint32-align=4", "--little-endian"],
28 "mips64el": ["--uint32-align=4", "--little-endian"],
29 "mipsisa64r6el": ["--uint32-align=4", "--little-endian"],
30 "i586": ["--uint32-align=4", "--little-endian"],
31 "i686": ["--uint32-align=4", "--little-endian"],
32 "x86_64": ["--uint32-align=4", "--little-endian"]
33 }
34 if target_arch in locale_arch_options:
35 arch_options = locale_arch_options[target_arch]
36 else:
37 bb.error("locale_arch_options not found for target_arch=" + target_arch)
38 bb.fatal("unknown arch:" + target_arch + " for locale_arch_options")
39
40 localedir = oe.path.join(rootfs, d.getVar("libdir_nativesdk"), "locale")
41 # Need to set this so cross-localedef knows where the archive is
42 env = dict(os.environ)
43 env["LOCALEARCHIVE"] = oe.path.join(localedir, "locale-archive")
44
45 for name in os.listdir(localedir):
46 path = os.path.join(localedir, name)
47 if os.path.isdir(path):
48 try:
49 cmd = ["cross-localedef", "--verbose"]
50 cmd += arch_options
51 cmd += ["--add-to-archive", path]
52 subprocess.check_output(cmd, env=env, stderr=subprocess.STDOUT)
53 except Exception as e:
54 bb.fatal("Cannot create locale archive: %s" % e.output)
10 55
11class Sdk(object, metaclass=ABCMeta): 56class Sdk(object, metaclass=ABCMeta):
12 def __init__(self, d, manifest_dir): 57 def __init__(self, d, manifest_dir):
@@ -87,11 +132,18 @@ class Sdk(object, metaclass=ABCMeta):
87 def install_locales(self, pm): 132 def install_locales(self, pm):
88 linguas = self.d.getVar("SDKIMAGE_LINGUAS") 133 linguas = self.d.getVar("SDKIMAGE_LINGUAS")
89 if linguas: 134 if linguas:
135 import fnmatch
136 # Install the binary locales
90 if linguas == "all": 137 if linguas == "all":
91 pm.install_glob("nativesdk-locale-base-*.utf-8", sdk=True) 138 pm.install_glob("nativesdk-glibc-binary-localedata-*.utf-8", sdk=True)
92 else: 139 else:
93 for lang in linguas.split(): 140 for lang in linguas.split():
94 pm.install("nativesdk-locale-base-%s.utf-8" % lang) 141 pm.install("nativesdk-glibc-binary-localedata-%s.utf-8" % lang)
142 # Generate a locale archive of them
143 generate_locale_archive(self.d, oe.path.join(self.sdk_host_sysroot, self.sdk_native_path))
144 # And now delete the binary locales
145 pkgs = fnmatch.filter(pm.list_installed(), "nativesdk-glibc-binary-localedata-*.utf-8")
146 pm.remove(pkgs)
95 else: 147 else:
96 # No linguas so do nothing 148 # No linguas so do nothing
97 pass 149 pass