]> code.ossystems Code Review - openembedded-core.git/commitdiff
kernel-yocto.bbclass: Fix some obvious typoes in comments.
authorRobert P. J. Day <rpjday@crashcourse.ca>
Fri, 20 Jul 2012 15:19:23 +0000 (11:19 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 22 Jul 2012 10:40:09 +0000 (11:40 +0100)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/kernel-yocto.bbclass

index d914b11befdbc92c019a68eecb79e3bb940e3e81..1e08faa90e7ee4824f926fafc06c469748ad8947 100644 (file)
@@ -147,10 +147,10 @@ do_kernel_checkout() {
                fi
        done
 
-       # Create a working tree copy of the kernel by checkout out a branch
+       # Create a working tree copy of the kernel by checking out a branch
        git show-ref --quiet --verify -- "refs/heads/${KBRANCH}"
        if [ $? -eq 0 ]; then
-               # checkout and clobber and unimportant files
+               # checkout and clobber any unimportant files
                git checkout -f ${KBRANCH}
        else
                echo "Not checking out ${KBRANCH}, it will be created later"
@@ -200,7 +200,7 @@ python do_kernel_configcheck() {
 }
 
 
-# Ensure that the branches (BSP and meta) are on the locatios specified by
+# Ensure that the branches (BSP and meta) are on the locations specified by
 # their SRCREV values. If they are NOT on the right commits, the branches
 # are reset to the correct commit.
 do_validate_branches() {