summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/uclibc/uclibc-config.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-06-26 14:01:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-02 22:23:49 +0100
commit0188270f8cce65c4fb5937e0688c0ff70b0f2142 (patch)
treee7c29a1561070098485d9a628503a0634a20de96 /meta/recipes-core/uclibc/uclibc-config.inc
parentc0d232875fe85d97700e7a7e44e52574a29784cd (diff)
downloadpoky-0188270f8cce65c4fb5937e0688c0ff70b0f2142.tar.gz
uclibc: Update to latest git/master version
Use kernel cfg management infra to manage kconfig fragments. Add fragments for locale and obstrack and enable them by default Drop aplready applied patches Drop DP = -1 (From OE-Core rev: 7bcf53ddb2e1a7171545f544ee2443b06d7c3359) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/uclibc/uclibc-config.inc')
-rw-r--r--meta/recipes-core/uclibc/uclibc-config.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/recipes-core/uclibc/uclibc-config.inc b/meta/recipes-core/uclibc/uclibc-config.inc
index 0c7a0ceb06..8b9e41c64d 100644
--- a/meta/recipes-core/uclibc/uclibc-config.inc
+++ b/meta/recipes-core/uclibc/uclibc-config.inc
@@ -1,3 +1,5 @@
1DEPENDS += "kern-tools-native"
2inherit cml1
1# 3#
2# Set the ARCH environment variable for uClibc compilation. 4# Set the ARCH environment variable for uClibc compilation.
3# Return value must match one of the architectures known to uClibc: 5# Return value must match one of the architectures known to uClibc:
@@ -128,3 +130,13 @@ def features_to_uclibc_conf(d):
128def features_to_uclibc_del(d): 130def features_to_uclibc_del(d):
129 cnf, rem = features_to_uclibc_settings(d) 131 cnf, rem = features_to_uclibc_settings(d)
130 return rem 132 return rem
133
134# returns all the elements from the src uri that are .cfg files
135def find_cfgs(d):
136 sources=src_patches(d, True)
137 sources_list=[]
138 for s in sources:
139 if s.endswith('.cfg'):
140 sources_list.append(s)
141
142 return sources_list