diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 41d8620e67..54a1a1627a 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -156,9 +156,10 @@ do_kernel_metadata() { | |||
156 | # a quick check to make sure we don't have duplicate defconfigs If | 156 | # a quick check to make sure we don't have duplicate defconfigs If |
157 | # there's a defconfig in the SRC_URI, did we also have one from the | 157 | # there's a defconfig in the SRC_URI, did we also have one from the |
158 | # KBUILD_DEFCONFIG processing above ? | 158 | # KBUILD_DEFCONFIG processing above ? |
159 | src_uri_defconfig=$(echo $sccs_from_src_uri | awk '{ if ($0=="defconfig") { print $0 } }' RS=' ') | 159 | src_uri_defconfig=$(echo $sccs_from_src_uri | awk '(match($0, "defconfig") != 0) { print $0 }' RS=' ') |
160 | # drop and defconfig's from the src_uri variable, we captured it just above here if it existed | 160 | # drop and defconfig's from the src_uri variable, we captured it just above here if it existed |
161 | sccs_from_src_uri=$(echo $sccs_from_src_uri | awk '{ if ($0!="defconfig") { print $0 } }' RS=' ') | 161 | sccs_from_src_uri=$(echo $sccs_from_src_uri | awk '(match($0, "defconfig") == 0) { print $0 }' RS=' ') |
162 | |||
162 | if [ -n "$in_tree_defconfig" ]; then | 163 | if [ -n "$in_tree_defconfig" ]; then |
163 | sccs_defconfig=$in_tree_defconfig | 164 | sccs_defconfig=$in_tree_defconfig |
164 | if [ -n "$src_uri_defconfig" ]; then | 165 | if [ -n "$src_uri_defconfig" ]; then |