| Submitter | Robert P. J. Day |
|---|---|
| Date | July 15, 2012, 9:07 a.m. |
| Message ID | <alpine.DEB.2.02.1207150506210.31191@oneiric> |
| Download | mbox | patch |
| Permalink | /patch/32075/ |
| State | New |
| Headers | show |
Comments
On Sun, Jul 15, 2012 at 5:07 AM, Robert P. J. Day <rpjday@crashcourse.ca> wrote: > As I mentioned in the other threads, you need to cc them maintainer on patches to a particular recipe. I've queued and rebased this onto my stack (those comments are different in my local) tree. Thanks for the update. Bruce > Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> > > --- > > diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass > index 48c8974..ca2e837 100644 > --- a/meta/classes/kernel-yocto.bbclass > +++ b/meta/classes/kernel-yocto.bbclass > @@ -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() { > > rday > > -- > > ======================================================================== > Robert P. J. Day Ottawa, Ontario, CANADA > http://crashcourse.ca > > Twitter: http://twitter.com/rpjday > LinkedIn: http://ca.linkedin.com/in/rpjday > ======================================================================== > > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
Patch
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 48c8974..ca2e837 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -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() {
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> --- rday