diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-01-18 00:19:26 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-18 13:19:19 +0000 |
commit | 42d42c24a37af0ea8896087c7cc8215eb19f633d (patch) | |
tree | 7cc6036be4c9c2dc9efe208644d8d0f3327e24e9 /meta/classes/kernel-yocto.bbclass | |
parent | c09767086307d552a18f11250ae42ec34be220fb (diff) | |
download | openembedded-core-contrib-42d42c24a37af0ea8896087c7cc8215eb19f633d.tar.gz |
kernel-yocto: remove unnecessary non-bare warning
In the past working from a non-bare clone would cause problems,
due to branches not existing in the WORKDIR clone. This hasn't
been true for some time, since the routines which convert remotes
into local branches have been functioning without problems.
So we no longer need the warning and it can be removed.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index c74317e9bd9..99b3a464a99 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -120,15 +120,11 @@ do_kernel_checkout() { # A linux yocto SRC_URI should use the bareclone option. That # ensures that all the branches are available in the WORKDIR version - # of the repository. If it wasn't passed, we should detect it, and put - # out a useful error message + # of the repository. if [ -d "${WORKDIR}/git/" ] && [ -d "${WORKDIR}/git/.git" ]; then # we build out of {S}, so ensure that ${S} is clean and present rm -rf ${S} mkdir -p ${S} - - echo "WARNING. ${WORKDIR}/git is not a bare clone." - echo "Ensure that the SRC_URI includes the 'bareclone=1' option." # We can fix up the kernel repository even if it wasn't a bare clone. # If KMETA is defined, the branch must exist, but a machine branch |