diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2012-07-20 11:19:23 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 11:42:23 +0100 |
commit | 7d93e9844151499763437f5534de30f289a41791 (patch) | |
tree | 6e1f779a32465970e3c5bafe6eb28bad695ba48b /meta/classes | |
parent | b2c094f81dcf352f17156eb7ac9511af0759b0ea (diff) | |
download | poky-7d93e9844151499763437f5534de30f289a41791.tar.gz |
kernel-yocto.bbclass: Fix some obvious typoes in comments.
(From OE-Core rev: 072476bb6468d984ae3246f478fd5b3a21f7c8d6)
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>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index d914b11bef..1e08faa90e 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -147,10 +147,10 @@ do_kernel_checkout() { | |||
147 | fi | 147 | fi |
148 | done | 148 | done |
149 | 149 | ||
150 | # Create a working tree copy of the kernel by checkout out a branch | 150 | # Create a working tree copy of the kernel by checking out a branch |
151 | git show-ref --quiet --verify -- "refs/heads/${KBRANCH}" | 151 | git show-ref --quiet --verify -- "refs/heads/${KBRANCH}" |
152 | if [ $? -eq 0 ]; then | 152 | if [ $? -eq 0 ]; then |
153 | # checkout and clobber and unimportant files | 153 | # checkout and clobber any unimportant files |
154 | git checkout -f ${KBRANCH} | 154 | git checkout -f ${KBRANCH} |
155 | else | 155 | else |
156 | echo "Not checking out ${KBRANCH}, it will be created later" | 156 | echo "Not checking out ${KBRANCH}, it will be created later" |
@@ -200,7 +200,7 @@ python do_kernel_configcheck() { | |||
200 | } | 200 | } |
201 | 201 | ||
202 | 202 | ||
203 | # Ensure that the branches (BSP and meta) are on the locatios specified by | 203 | # Ensure that the branches (BSP and meta) are on the locations specified by |
204 | # their SRCREV values. If they are NOT on the right commits, the branches | 204 | # their SRCREV values. If they are NOT on the right commits, the branches |
205 | # are reset to the correct commit. | 205 | # are reset to the correct commit. |
206 | do_validate_branches() { | 206 | do_validate_branches() { |