diff options
author | Kang Kai <kai.kang@windriver.com> | 2011-06-07 16:16:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-14 15:29:12 +0100 |
commit | fbc60cc5ba2284bfcaea8c82001a49b7795cc2a2 (patch) | |
tree | b126a32adab444f091d012d8d2943d17660d3080 /meta/conf | |
parent | 81d14f5629b4eeb2096ccb52812e5775fe0125e9 (diff) | |
download | poky-fbc60cc5ba2284bfcaea8c82001a49b7795cc2a2.tar.gz |
eglibc: migrate configurability from oe
Migrate configurability from oe, try to shrink minimal image size
All eglibc configuration options are included in conf/distro/include/default-distrovars.inc.
Define DISTRO_FEATURES_LIBC and DISTRO_FEATURES in local.conf with the same way
in local.conf.sample.extended to enable those options.
(From OE-Core rev: 022ca1d1357caafdfe23aa9ab82f90ba89b6942b)
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/distro/include/default-distrovars.inc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index 4b68a0a54c..2cde46cd7b 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc | |||
@@ -10,7 +10,14 @@ LIMIT_BUILT_LOCALES ?= "POSIX en_US en_GB" | |||
10 | ENABLE_BINARY_LOCALE_GENERATION ?= "1" | 10 | ENABLE_BINARY_LOCALE_GENERATION ?= "1" |
11 | LOCALE_UTF8_ONLY ?= "0" | 11 | LOCALE_UTF8_ONLY ?= "0" |
12 | 12 | ||
13 | DISTRO_FEATURES ?= "alsa bluetooth ext2 irda pcmcia usbgadget usbhost wifi nfs zeroconf pci" | 13 | DISTRO_FEATURES_LIBC ?= "ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \ |
14 | libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \ | ||
15 | libc-getlogin libc-idn libc-inet libc-inet-anl libc-libm libc-libm-big libc-locales libc-locale-code \ | ||
16 | libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \ | ||
17 | libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \ | ||
18 | libc-posix-wchar-io" | ||
19 | |||
20 | DISTRO_FEATURES ?= "alsa bluetooth ext2 irda pcmcia usbgadget usbhost wifi nfs zeroconf pci ${DISTRO_FEATURES_LIBC}" | ||
14 | 21 | ||
15 | IMAGE_FEATURES ?= "" | 22 | IMAGE_FEATURES ?= "" |
16 | 23 | ||