diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 818a07e219..536434fdf1 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -136,6 +136,13 @@ do_validate_branches() { | |||
136 | return | 136 | return |
137 | fi | 137 | fi |
138 | 138 | ||
139 | # nothing to do if SRCREV=${AUTOREV} | ||
140 | if [ "${SRCREV_machine}" = "AUTOINC" ]; then | ||
141 | # restore the branch for builds | ||
142 | git checkout -f ${KBRANCH} | ||
143 | return | ||
144 | fi | ||
145 | |||
139 | branch_head=`git show-ref -s --heads ${KBRANCH}` | 146 | branch_head=`git show-ref -s --heads ${KBRANCH}` |
140 | meta_head=`git show-ref -s --heads ${KMETA}` | 147 | meta_head=`git show-ref -s --heads ${KMETA}` |
141 | target_branch_head="${SRCREV_machine}" | 148 | target_branch_head="${SRCREV_machine}" |