summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel-yocto.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-02 17:16:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-02 17:19:18 +0000
commit8b5b3cca7dd096680ce16b02e35399cd12d487f9 (patch)
tree0848269939452a46104344f3a387fb459e2b82ca /meta/classes/kernel-yocto.bbclass
parent0e837e6844be449659bb96a1498e54a8b9442d13 (diff)
downloadpoky-8b5b3cca7dd096680ce16b02e35399cd12d487f9.tar.gz
linux-yocto/linux-libc-headers-yocto: Adjust to git fetcher improvements
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r--meta/classes/kernel-yocto.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 70521a4fb3..9ca7758bb8 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -89,11 +89,11 @@ do_patch() {
89} 89}
90 90
91do_kernel_checkout() { 91do_kernel_checkout() {
92 if [ -d ${WORKDIR}/.git/refs/remotes/origin ]; then 92 if [ -d ${WORKDIR}/git/.git/refs/remotes/origin ]; then
93 echo "Fixing up git directory for ${LINUX_KERNEL_TYPE}/${KMACHINE}" 93 echo "Fixing up git directory for ${LINUX_KERNEL_TYPE}/${KMACHINE}"
94 rm -rf ${S} 94 rm -rf ${S}
95 mkdir ${S} 95 mkdir ${S}
96 mv ${WORKDIR}/.git ${S} 96 mv ${WORKDIR}/git/.git ${S}
97 97
98 if [ -e ${S}/.git/packed-refs ]; then 98 if [ -e ${S}/.git/packed-refs ]; then
99 cd ${S} 99 cd ${S}