[oe-commits] Bruce Ashfield : linux-yocto: allow non-branched repositories to check out

git at git.openembedded.org git at git.openembedded.org
Tue Feb 28 12:24:18 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: fb2b3c7c10df1b44679a20e7dffd37f07fd01aba
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=fb2b3c7c10df1b44679a20e7dffd37f07fd01aba

Author: Bruce Ashfield <bruce.ashfield at windriver.com>
Date:   Mon Feb 27 13:20:41 2012 -0500

linux-yocto: allow non-branched repositories to check out

Not all users of the checkout phase of linux-yocto have all
branches present. This is normal, and should be supported. By
checking for an empty KBRANCH we can avoid validating a branch
that isn't supposed to exist.

[YOCTO #2032]

Signed-off-by: Bruce Ashfield <bruce.ashfield at windriver.com>

---

 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 50ff555..5f3cb63 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -165,7 +165,7 @@ do_kernel_checkout() {
 			echo "kernel repository"
 			exit 1
 		fi
-	 	if [ -z "${YOCTO_KERNEL_EXTERNAL_BRANCH}" ]; then
+	 	if [ -z "${YOCTO_KERNEL_EXTERNAL_BRANCH}" ] && [ -n "${KBRANCH}" ] ; then
 			git branch -a | grep -q ${KBRANCH}
 			if [ $? -ne 0 ]; then
 				echo "ERROR. The branch '${KBRANCH}' is required and was not"





More information about the Openembedded-commits mailing list