summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2012-01-05 15:37:35 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-06 11:32:17 +0000
commit1d2451a8c70774380aae48f99ebc3967a86911f5 (patch)
treefa69c60f51d5f02ce65d26fe11da6c3f86079618
parent7402c8a175adc01efabc45aa60df606c1b9a2d19 (diff)
downloadpoky-1d2451a8c70774380aae48f99ebc3967a86911f5.tar.gz
distro: Update poky-tiny distro definition
Rather than conditionally drop eglibc-utils based on wchar support, set USE_NLS="no" in the distro config to avoid pulling in gettext. Also addresses some confusion over the "All rights reserved." statement by explicitly referencing the MIT license. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta-yocto/conf/distro/poky-tiny.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 49c4397a42..411347a650 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -3,6 +3,9 @@
3# Copyright (c) 2011, Intel Corporation. 3# Copyright (c) 2011, Intel Corporation.
4# All rights reserved. 4# All rights reserved.
5# 5#
6# This file is released under the MIT license as described in
7# ../meta/COPYING.MIT.
8#
6# Poky-tiny is intended to define a tiny Linux system comprised of a 9# Poky-tiny is intended to define a tiny Linux system comprised of a
7# Linux kernel tailored to support each specific MACHINE and busybox. 10# Linux kernel tailored to support each specific MACHINE and busybox.
8# Poky-tiny sets some basic policy to ensure a usable system while still 11# Poky-tiny sets some basic policy to ensure a usable system while still
@@ -48,6 +51,10 @@ TCLIBCAPPEND = ""
48# in the LIBC features below. 51# in the LIBC features below.
49ENABLE_WIDEC="false" 52ENABLE_WIDEC="false"
50 53
54# Drop native language support. This removes the
55# eglibc->bash->gettext->libc-posix-clang-wchar dependency.
56USE_NLS="no"
57
51# Reconfigure eglibc for a smaller installation 58# Reconfigure eglibc for a smaller installation
52# Comment out any of the lines below to disable them in the build 59# Comment out any of the lines below to disable them in the build
53DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt" 60DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"