diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-02-14 16:14:24 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-19 06:16:58 -0800 |
commit | 9b77a677a0a44332cd2aa21da07b58cf1e794d4d (patch) | |
tree | 09060c9cab962ee9c6ee55250f712dd5939c2812 /meta/classes | |
parent | c57ccdcb5bf76d11e5cf48de2b1fcfb91f790189 (diff) | |
download | poky-9b77a677a0a44332cd2aa21da07b58cf1e794d4d.tar.gz |
kernel-yocto: trivial: remove extra } from bsp_definition
A typo introduced an extra } in the logging of the bsp_definition.
While this won't cause problems .. it needs to be fixed!
(From OE-Core rev: 9b95f3fca2a94ca922e05321096e07a11e98f9bb)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 33361b9624..0330270d3f 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -148,7 +148,7 @@ do_kernel_metadata() { | |||
148 | # run1: pull all the configuration fragments, no matter where they come from | 148 | # run1: pull all the configuration fragments, no matter where they come from |
149 | elements="`echo -n ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES}`" | 149 | elements="`echo -n ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES}`" |
150 | if [ -n "${elements}" ]; then | 150 | if [ -n "${elements}" ]; then |
151 | echo "${bsp_definition}}" > ${S}/${meta_dir}/bsp_definition | 151 | echo "${bsp_definition}" > ${S}/${meta_dir}/bsp_definition |
152 | scc --force -o ${S}/${meta_dir}:cfg,merge,meta ${includes} ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES} | 152 | scc --force -o ${S}/${meta_dir}:cfg,merge,meta ${includes} ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES} |
153 | if [ $? -ne 0 ]; then | 153 | if [ $? -ne 0 ]; then |
154 | bbfatal_log "Could not generate configuration queue for ${KMACHINE}." | 154 | bbfatal_log "Could not generate configuration queue for ${KMACHINE}." |