public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] how to create patches for mailing
@ 2013-01-24  7:40 Maxim Podbereznyy
  2013-01-24  8:02 ` Hebbar, Gururaja
  0 siblings, 1 reply; 5+ messages in thread
From: Maxim Podbereznyy @ 2013-01-24  7:40 UTC (permalink / raw)
  To: u-boot

Hi!

I want to add a new board support to u-boot. So I did the following:

1) git clone git://git.denx.de/u-boot.git u-boot-dev
2) modified existing files, added new
3) built the tree for my board, beagle and overo - OK
4) git format-patch - nothing happens

are there any step by step instructions how to create and submit patches to
u-boot mail-list? Reading this
http://www.denx.de/wiki/view/U-Boot/Patchesdoes not give sufficient
comprehension how to do it..

I appreciate any comments..

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] how to create patches for mailing
  2013-01-24  7:40 [U-Boot] how to create patches for mailing Maxim Podbereznyy
@ 2013-01-24  8:02 ` Hebbar, Gururaja
  2013-01-24  8:21   ` Maxim Podbereznyy
  0 siblings, 1 reply; 5+ messages in thread
From: Hebbar, Gururaja @ 2013-01-24  8:02 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 24, 2013 at 13:10:56, Maxim Podbereznyy wrote:
> Hi!
> 
> I want to add a new board support to u-boot. So I did the following:
> 
> 1) git clone git://git.denx.de/u-boot.git u-boot-dev
> 2) modified existing files, added new

Use "git commit" to commit your changes to tree

> 3) built the tree for my board, beagle and overo - OK
> 4) git format-patch - nothing happens

git-format-patch -M --signoff --stat -p --raw -n -3 --cover-letter

-3 == generate patches for 1st 3 patch 
-n = use n/n style
--cover-letter == Generate Cover letter (0/n patch)


> 
> are there any step by step instructions how to create and submit patches to
> u-boot mail-list? 

Use git-send-email to send patches

git-send-email --to ' u-boot at lists.denx.de'  --cc 'maintainers at email.id' --cc 'related_developer at email.id'  --cc 'self_for_reference at email.id' --suppress-cc=all <required-patches>

> Reading this
> http://www.denx.de/wiki/view/U-Boot/Patchesdoes not give sufficient
> comprehension how to do it..
> 
> I appreciate any comments..
> 


Regards, 
Gururaja

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] how to create patches for mailing
  2013-01-24  8:02 ` Hebbar, Gururaja
@ 2013-01-24  8:21   ` Maxim Podbereznyy
  2013-01-24  8:25     ` Hebbar, Gururaja
  2013-01-24  8:40     ` Eric Bénard
  0 siblings, 2 replies; 5+ messages in thread
From: Maxim Podbereznyy @ 2013-01-24  8:21 UTC (permalink / raw)
  To: u-boot

Hi Gururaja!

Your instructions are exceptional! However I have a few questions:
1) why should I generate patches for 1st 3 patch, because I have only one?
2) if there are 3 patches (only 1 is mine) + a cover which exactly
<required-patches> should I send?

thanks!


2013/1/24 Hebbar, Gururaja <gururaja.hebbar@ti.com>

> On Thu, Jan 24, 2013 at 13:10:56, Maxim Podbereznyy wrote:
> > Hi!
> >
> > I want to add a new board support to u-boot. So I did the following:
> >
> > 1) git clone git://git.denx.de/u-boot.git u-boot-dev
> > 2) modified existing files, added new
>
> Use "git commit" to commit your changes to tree
>
> > 3) built the tree for my board, beagle and overo - OK
> > 4) git format-patch - nothing happens
>
> git-format-patch -M --signoff --stat -p --raw -n -3 --cover-letter
>
> -3 == generate patches for 1st 3 patch
> -n = use n/n style
> --cover-letter == Generate Cover letter (0/n patch)
>
>
> >
> > are there any step by step instructions how to create and submit patches
> to
> > u-boot mail-list?
>
> Use git-send-email to send patches
>
> git-send-email --to ' u-boot at lists.denx.de'  --cc 'maintainers at email.id'
> --cc 'related_developer at email.id'  --cc 'self_for_reference at email.id'
> --suppress-cc=all <required-patches>
>
> > Reading this
> > http://www.denx.de/wiki/view/U-Boot/Patchesdoes not give sufficient
> > comprehension how to do it..
> >
> > I appreciate any comments..
> >
>
>
> Regards,
> Gururaja
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] how to create patches for mailing
  2013-01-24  8:21   ` Maxim Podbereznyy
@ 2013-01-24  8:25     ` Hebbar, Gururaja
  2013-01-24  8:40     ` Eric Bénard
  1 sibling, 0 replies; 5+ messages in thread
From: Hebbar, Gururaja @ 2013-01-24  8:25 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 24, 2013 at 13:51:30, Maxim Podbereznyy wrote:
> Hi Gururaja!

1st don?t top-most. It breaks the flow.

> 
> 
> Your instructions are exceptional! However I have a few questions:
> 
> 1) why should I generate patches for 1st 3 patch, because I have only
> one?

That was just an example.

> 
> 2) if there are 3 patches (only 1 is mine) + a cover which exactly
> <required-patches> should I send?


If you have one patch, then only 1 patch should be sent. Cover-letter 
normally is for new feature addition/improvement which involves lots of 
files & platforms.

Normal fix/correction doesn?t require a cover-letter.

> 
> 
> thanks!
> 
> 
> 
> 2013/1/24 Hebbar, Gururaja <gururaja.hebbar@ti.com>
> 
> 
> 	On Thu, Jan 24, 2013 at 13:10:56, Maxim Podbereznyy wrote:
> 	> Hi!
> 	>
> 	> I want to add a new board support to u-boot. So I did the
> following:
> 	>
> 	> 1) git clone git://git.denx.de/u-boot.git u-boot-dev
> 	> 2) modified existing files, added new
> 	
> 	
> 	Use "git commit" to commit your changes to tree
> 	
> 
> 	> 3) built the tree for my board, beagle and overo - OK
> 	> 4) git format-patch - nothing happens
> 	
> 	
> 	git-format-patch -M --signoff --stat -p --raw -n -3
> --cover-letter
> 	
> 	-3 == generate patches for 1st 3 patch
> 	-n = use n/n style
> 	--cover-letter == Generate Cover letter (0/n patch)
> 	
> 
> 
> 	>
> 	> are there any step by step instructions how to create and
> submit patches to
> 	> u-boot mail-list?
> 	
> 	
> 	Use git-send-email to send patches
> 	
> 	git-send-email --to ' u-boot at lists.denx.de'  --cc
> 'maintainers at email.id' --cc 'related_developer at email.id'  --cc
> 'self_for_reference at email.id' --suppress-cc=all <required-patches>
> 	
> 	> Reading this
> 	> http://www.denx.de/wiki/view/U-Boot/Patchesdoes not give
> sufficient
> 	
> 	> comprehension how to do it..
> 	>
> 	> I appreciate any comments..
> 	>
> 	
> 	
> 	
> 	Regards,
> 	Gururaja
> 	
> 
> 
> 


Regards, 
Gururaja

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] how to create patches for mailing
  2013-01-24  8:21   ` Maxim Podbereznyy
  2013-01-24  8:25     ` Hebbar, Gururaja
@ 2013-01-24  8:40     ` Eric Bénard
  1 sibling, 0 replies; 5+ messages in thread
From: Eric Bénard @ 2013-01-24  8:40 UTC (permalink / raw)
  To: u-boot

Hi Maxim,

Le Thu, 24 Jan 2013 12:21:30 +0400,
Maxim Podbereznyy <lisarden@gmail.com> a ?crit :
> Your instructions are exceptional! However I have a few questions:
> 1) why should I generate patches for 1st 3 patch, because I have only one?
> 2) if there are 3 patches (only 1 is mine) + a cover which exactly
> <required-patches> should I send?
> 
you have more details here :
http://www.denx.de/wiki/U-Boot/Patches

Eric

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-24  8:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-24  7:40 [U-Boot] how to create patches for mailing Maxim Podbereznyy
2013-01-24  8:02 ` Hebbar, Gururaja
2013-01-24  8:21   ` Maxim Podbereznyy
2013-01-24  8:25     ` Hebbar, Gururaja
2013-01-24  8:40     ` Eric Bénard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox