diff options
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 5cfd8aff50..36f61c5694 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 | scc --force -o ${S}/${meta_dir}:cfg,meta ${includes} ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES} | 151 | scc --force -o ${S}/${meta_dir}:cfg,merge,meta ${includes} ${bsp_definition} ${sccs} ${patches} ${KERNEL_FEATURES} |
152 | if [ $? -ne 0 ]; then | 152 | if [ $? -ne 0 ]; then |
153 | bbfatal_log "Could not generate configuration queue for ${KMACHINE}." | 153 | bbfatal_log "Could not generate configuration queue for ${KMACHINE}." |
154 | fi | 154 | fi |
@@ -165,6 +165,7 @@ do_kernel_metadata() { | |||
165 | } | 165 | } |
166 | 166 | ||
167 | do_patch() { | 167 | do_patch() { |
168 | set +e | ||
168 | cd ${S} | 169 | cd ${S} |
169 | 170 | ||
170 | check_git_config | 171 | check_git_config |
@@ -177,6 +178,19 @@ do_patch() { | |||
177 | bbfatal_log "Patch failures can be resolved in the linux source directory ${S})" | 178 | bbfatal_log "Patch failures can be resolved in the linux source directory ${S})" |
178 | fi | 179 | fi |
179 | fi | 180 | fi |
181 | |||
182 | if [ -f "${meta_dir}/merge.queue" ]; then | ||
183 | # we need to merge all these branches | ||
184 | for b in $(cat ${meta_dir}/merge.queue); do | ||
185 | git show-ref --verify --quiet refs/heads/${b} | ||
186 | if [ $? -eq 0 ]; then | ||
187 | bbnote "Merging branch ${b}" | ||
188 | git merge -q --no-ff -m "Merge branch ${b}" ${b} | ||
189 | else | ||
190 | bbfatal "branch ${b} does not exist, cannot merge" | ||
191 | fi | ||
192 | done | ||
193 | fi | ||
180 | } | 194 | } |
181 | 195 | ||
182 | do_kernel_checkout() { | 196 | do_kernel_checkout() { |