diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-12-01 13:37:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-08 10:35:08 +0000 |
commit | 18e4688bd52ed7746e7687b225da10f025cafc68 (patch) | |
tree | 92645a4f7c543d5c35e6df3c18bd64725238cb62 | |
parent | 13901d22a7ac13c56772d246619896fa4615f71a (diff) | |
download | poky-18e4688bd52ed7746e7687b225da10f025cafc68.tar.gz |
libc-package.bbclass: split binary localedata even more if asked to
If GLIBC_SPLIT_LC_PACKAGES is set to a non-zero value, convert
glibc-binary-localedata-XX-YY to be a meta package depending on
glibc-binary-localedata-XX-YY-lc-address and so on. This enables
saving quite some space if someone doesn't need LC_COLLATE for
example.
Some regex code was removed from output_locale_binary_rdepends,
because legitimize_package_name already converts to lowercase.
(From meta-yocto rev: fcbff9f5e3c32fb8cc3781c0584899e8fce0254c)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-poky/conf/local.conf.sample.extended | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-poky/conf/local.conf.sample.extended b/meta-poky/conf/local.conf.sample.extended index d407ffb499..0560de8576 100644 --- a/meta-poky/conf/local.conf.sample.extended +++ b/meta-poky/conf/local.conf.sample.extended | |||
@@ -47,6 +47,13 @@ | |||
47 | # less than 128MB RAM. | 47 | # less than 128MB RAM. |
48 | #ENABLE_BINARY_LOCALE_GENERATION = "1" | 48 | #ENABLE_BINARY_LOCALE_GENERATION = "1" |
49 | 49 | ||
50 | # If GLIBC_SPLIT_LC_PACKAGES is set to a non-zero value, convert | ||
51 | # glibc-binary-localedata-XX-YY to be a meta package depending on | ||
52 | # glibc-binary-localedata-XX-YY-lc-address and so on. This enables | ||
53 | # saving quite some space if someone doesn't need LC_COLLATE for | ||
54 | # example. | ||
55 | #GLIBC_SPLIT_LC_PACKAGES = "1" | ||
56 | |||
50 | # Set GLIBC_GENERATE_LOCALES to the locales you wish to generate should you not | 57 | # Set GLIBC_GENERATE_LOCALES to the locales you wish to generate should you not |
51 | # wish to perform the time-consuming step of generating all LIBC locales. | 58 | # wish to perform the time-consuming step of generating all LIBC locales. |
52 | # NOTE: If removing en_US.UTF-8 you will also need to uncomment, and set | 59 | # NOTE: If removing en_US.UTF-8 you will also need to uncomment, and set |