summaryrefslogtreecommitdiffstats
path: root/meta/classes/cml1.bbclass
diff options
context:
space:
mode:
authorRasmus Villemoes <rasmus.villemoes@prevas.dk>2020-07-09 22:19:53 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-12 12:21:48 +0100
commit329665d68b17479ccd11fa60479c9c7a8b2355a8 (patch)
treeb8516d1f44dd3dedd839715d152351667d54f425 /meta/classes/cml1.bbclass
parent2c53213a1b9571b6cca01e70ba4c3e3af4f4b418 (diff)
downloadpoky-329665d68b17479ccd11fa60479c9c7a8b2355a8.tar.gz
cml1: Move find_cfgs() helper to cml1.bbclass
u-boot.inc and busybox.inc contain identical copies of this little helper. They both inherit the cml1 class and use cml1_do_configure right after having used this helper, and other recipes that want to write similar logic for doing Kconfig via fragments will also need it or something equivalent. (From OE-Core rev: af687c9137a3e8efe48afa6fd12866cf656ae913) Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cml1.bbclass')
-rw-r--r--meta/classes/cml1.bbclass10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
index c7f6723cb3..8ab240589a 100644
--- a/meta/classes/cml1.bbclass
+++ b/meta/classes/cml1.bbclass
@@ -1,3 +1,13 @@
1# returns all the elements from the src uri that are .cfg files
2def find_cfgs(d):
3 sources=src_patches(d, True)
4 sources_list=[]
5 for s in sources:
6 if s.endswith('.cfg'):
7 sources_list.append(s)
8
9 return sources_list
10
1cml1_do_configure() { 11cml1_do_configure() {
2 set -e 12 set -e
3 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS 13 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS