]> code.ossystems Code Review - openembedded-core.git/commitdiff
kern-tools: tools/kconf_check: modify grep pattern
authorBruce Ashfield <bruce.ashfield@windriver.com>
Mon, 17 Dec 2018 03:38:28 +0000 (22:38 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 18 Dec 2018 16:19:29 +0000 (16:19 +0000)
Integrating the following kern tools patch:

    The cmd line, <grep '^[  ]*\(menu\)*config '>, can't
    match all expect config options.

    This is because that it is not always a single space after 'config'
    in kernel-source/*/.../Kconfig. e.g. "config IP_VS_IPV6" in
    net/netfilter/ipvs/Kconfig

    So we should change the cmd to grep '^[  ]*\(menu\)*config\s'.

Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-kernel/kern-tools/kern-tools-native_git.bb

index b353c21dfbadd76464c8d51d3a502ab810eb11f3..5c1d7f691fb43f5ea802a806bb58f3a6a07a5bb3 100644 (file)
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=a6c2fa8aef1b
 
 DEPENDS = "git-native"
 
-SRCREV = "d6529f86fc5bcb3514953ff9fa2f51a3fbf03a0f"
+SRCREV = "af1a779f662c81da521e4d602f3c6446547d12a2"
 PR = "r12"
 PV = "0.2+git${SRCPV}"