summaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/distro/poky-tiny.conf18
1 files changed, 12 insertions, 6 deletions
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 58d64ece35..327cc1ee2c 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -63,12 +63,17 @@ ASSUME_PROVIDED += "pkgconfig$"
63# Reconfigure eglibc for a smaller installation 63# Reconfigure eglibc for a smaller installation
64# Comment out any of the lines below to disable them in the build 64# Comment out any of the lines below to disable them in the build
65DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt" 65DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"
66# for gettext 66
67DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar" 67# Building meta-toolchain currently imposes some additional requirements:
68# for m4 68# If you do not plan to build meta-toolchain, you can save ~461KB by
69DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code" 69# commenting out the DISTRO_FEATURES_LIBC_TOOLCHAIN assignment
70# for elfutils 70# gettext needs wchar, m4 needs spawn and locale, elfutils needs ftraverse
71DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse" 71DISTRO_FEATURES_LIBC_TOOLCHAIN = "libc-posix-clang-wchar \
72 libc-spawn libc-locale-code \
73 libc-ftraverse libc-libm-big \
74 libc-posix-regexp-glibc \
75 "
76
72# Required for "who" 77# Required for "who"
73DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin" 78DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
74DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp" 79DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
@@ -78,6 +83,7 @@ DISTRO_FEATURES_LIBC = "${DISTRO_FEATURES_LIBC_TINY} \
78 ${DISTRO_FEATURES_LIBC_MINIMAL} \ 83 ${DISTRO_FEATURES_LIBC_MINIMAL} \
79 ${DISTRO_FEATURES_LIBC_REGEX} \ 84 ${DISTRO_FEATURES_LIBC_REGEX} \
80 ${DISTRO_FEATURES_LIBC_NET} \ 85 ${DISTRO_FEATURES_LIBC_NET} \
86 ${DISTRO_FEATURES_LIBC_TOOLCHAIN} \
81 " 87 "
82 88
83# Comment out any of the lines below to disable them in the build 89# Comment out any of the lines below to disable them in the build