diff options
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 7 | ||||
-rw-r--r-- | meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 724e5cd475..f78d63b349 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -212,8 +212,13 @@ python do_kernel_configcheck() { | |||
212 | 212 | ||
213 | bb.plain("NOTE: validating kernel configuration") | 213 | bb.plain("NOTE: validating kernel configuration") |
214 | 214 | ||
215 | # if KMETA isn't set globally by a recipe using this routine, we need to | ||
216 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid | ||
217 | # meta-series for processing | ||
218 | kmeta = d.getVar( "KMETA", True ) or "meta" | ||
219 | |||
215 | pathprefix = "export PATH=%s:%s; " % (d.getVar('PATH', True), "${S}/scripts/util/") | 220 | pathprefix = "export PATH=%s:%s; " % (d.getVar('PATH', True), "${S}/scripts/util/") |
216 | cmd = d.expand("cd ${S}; kconf_check -config- ${KMETA}/meta-series ${S} ${B}") | 221 | cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) |
217 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) | 222 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) |
218 | 223 | ||
219 | bb.plain( "%s" % result ) | 224 | bb.plain( "%s" % result ) |
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb index e8926ee865..1381fd1736 100644 --- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb +++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | |||
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70c | |||
4 | 4 | ||
5 | DEPENDS = "git-native guilt-native" | 5 | DEPENDS = "git-native guilt-native" |
6 | 6 | ||
7 | SRCREV = "0c7b625280eb9ff62d40b53308e7238ddd164f38" | 7 | SRCREV = "a04138a02644eada0d012196e5ac3db4f516114d" |
8 | PR = "r12" | 8 | PR = "r12" |
9 | PV = "0.1+git${SRCPV}" | 9 | PV = "0.1+git${SRCPV}" |
10 | 10 | ||