From 0188270f8cce65c4fb5937e0688c0ff70b0f2142 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 26 Jun 2013 14:01:27 -0700 Subject: 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-core/uclibc/uclibc-config.inc | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'meta/recipes-core/uclibc/uclibc-config.inc') 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 @@ +DEPENDS += "kern-tools-native" +inherit cml1 # # Set the ARCH environment variable for uClibc compilation. # Return value must match one of the architectures known to uClibc: @@ -128,3 +130,13 @@ def features_to_uclibc_conf(d): def features_to_uclibc_del(d): cnf, rem = features_to_uclibc_settings(d) return rem + +# returns all the elements from the src uri that are .cfg files +def find_cfgs(d): + sources=src_patches(d, True) + sources_list=[] + for s in sources: + if s.endswith('.cfg'): + sources_list.append(s) + + return sources_list -- cgit v1.2.3-54-g00ecf