diff options
author | Alexey Brodkin <alexey.brodkin@synopsys.com> | 2018-11-13 01:43:51 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-14 11:14:40 +0000 |
commit | ef637239656b1472bfcabaa87f87441dc92d6650 (patch) | |
tree | 3353402ad39d5d67b79859791e988fb321ecb704 /meta/lib/oe | |
parent | aae2c1ad963afea297817447a7d4ee1bb25f25d3 (diff) | |
download | poky-ef637239656b1472bfcabaa87f87441dc92d6650.tar.gz |
locale: Allow usage of cross-localedef for ARC
With this it's possible to build locale data for ARC
and not do it instead on the first boot.
(From OE-Core rev: f13c303491dc8850126ea14baedc7b63b7b5ecf4)
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/package_manager.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 882e7c429f..aa4de6e7c3 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -94,6 +94,8 @@ def generate_locale_archive(d, rootfs, target_arch, localedir): | |||
94 | # Pretty sure we don't need this for locale archive generation but | 94 | # Pretty sure we don't need this for locale archive generation but |
95 | # keeping it to be safe... | 95 | # keeping it to be safe... |
96 | locale_arch_options = { \ | 96 | locale_arch_options = { \ |
97 | "arc": ["--uint32-align=4", "--little-endian"], | ||
98 | "arceb": ["--uint32-align=4", "--big-endian"], | ||
97 | "arm": ["--uint32-align=4", "--little-endian"], | 99 | "arm": ["--uint32-align=4", "--little-endian"], |
98 | "armeb": ["--uint32-align=4", "--big-endian"], | 100 | "armeb": ["--uint32-align=4", "--big-endian"], |
99 | "aarch64": ["--uint32-align=4", "--little-endian"], | 101 | "aarch64": ["--uint32-align=4", "--little-endian"], |