Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Downloadsite DHCP changed
@ 2012-03-15  3:55 Markus Kaindl
  2012-03-15  7:10 ` Thomas Petazzoni
  2012-03-15  9:45 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Markus Kaindl @ 2012-03-15  3:55 UTC (permalink / raw)
  To: buildroot

---
 package/dhcp/dhcp.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
index 10bdc2e..9ec27d3 100644
--- a/package/dhcp/dhcp.mk
+++ b/package/dhcp/dhcp.mk
@@ -5,7 +5,7 @@
 #############################################################
 
 DHCP_VERSION  = 4.1-ESV-R4
-DHCP_SITE     = http://ftp.isc.org/isc/dhcp
+DHCP_SITE     = http://ftp.isc.org/isc/dhcp/$(DHCP_VERSION)
 DHCP_CONF_ENV = ac_cv_file__dev_random=yes
 DHCP_CONF_OPT = \
 	--localstatedir=/var/lib/dhcp \
-- 
1.7.3.4

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

* [Buildroot] [PATCH] Downloadsite DHCP changed
  2012-03-15  3:55 [Buildroot] [PATCH] Downloadsite DHCP changed Markus Kaindl
@ 2012-03-15  7:10 ` Thomas Petazzoni
  2012-03-16  0:29   ` Markus Kaindl
  2012-03-15  9:45 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2012-03-15  7:10 UTC (permalink / raw)
  To: buildroot

Hello Markus,

Excellent! You are almost there with your Git patch. You need to fix
two final things:

 * The short description of the patch should rather describe what the
   patch does rather than the reason why it does. Something like
   "dhcp: update HTTP site location" or similar. But that's just a
   matter of taste.

 * Our commit log must include a Markus Kaindl
   <markus.kaindl@stusta.mhn.de> line. So basically, your commit log
   should look like:

=====================================================================
dhcp: update HTTP site location

Signed-off-by: Markus Kaindl <markus.kaindl@stusta.mhn.de>
=====================================================================

And then your patch will be perfect.

I am sorry to be annoying about this, but those are the rules we all
follow in the Buildroot community, and I think it is a good idea to
explain them to new contributors.

Thanks for your work and persistence!

Thomas

Le Thu, 15 Mar 2012 04:55:06 +0100,
Markus Kaindl <markus.kaindl@stusta.mhn.de> a ?crit :

> ---
>  package/dhcp/dhcp.mk |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
> index 10bdc2e..9ec27d3 100644
> --- a/package/dhcp/dhcp.mk
> +++ b/package/dhcp/dhcp.mk
> @@ -5,7 +5,7 @@
>  #############################################################
>  
>  DHCP_VERSION  = 4.1-ESV-R4
> -DHCP_SITE     = http://ftp.isc.org/isc/dhcp
> +DHCP_SITE     = http://ftp.isc.org/isc/dhcp/$(DHCP_VERSION)
>  DHCP_CONF_ENV = ac_cv_file__dev_random=yes
>  DHCP_CONF_OPT = \
>  	--localstatedir=/var/lib/dhcp \



-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] Downloadsite DHCP changed
  2012-03-15  3:55 [Buildroot] [PATCH] Downloadsite DHCP changed Markus Kaindl
  2012-03-15  7:10 ` Thomas Petazzoni
@ 2012-03-15  9:45 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-03-15  9:45 UTC (permalink / raw)
  To: buildroot

>>>>> "Markus" == Markus Kaindl <markus.kaindl@stusta.mhn.de> writes:

 Markus> ---
 Markus>  package/dhcp/dhcp.mk |    2 +-
 Markus>  1 files changed, 1 insertions(+), 1 deletions(-)

 Markus> diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
 Markus> index 10bdc2e..9ec27d3 100644
 Markus> --- a/package/dhcp/dhcp.mk
 Markus> +++ b/package/dhcp/dhcp.mk
 Markus> @@ -5,7 +5,7 @@
 Markus>  #############################################################
 
 Markus>  DHCP_VERSION  = 4.1-ESV-R4
 Markus> -DHCP_SITE     = http://ftp.isc.org/isc/dhcp
 Markus> +DHCP_SITE     = http://ftp.isc.org/isc/dhcp/$(DHCP_VERSION)

Sorry, I just fixed it myself this morning before I saw your mail.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] Downloadsite DHCP changed
  2012-03-15  7:10 ` Thomas Petazzoni
@ 2012-03-16  0:29   ` Markus Kaindl
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Kaindl @ 2012-03-16  0:29 UTC (permalink / raw)
  To: buildroot

Thomas Petazzoni schrieb:
> Hello Markus,
> 
> Excellent! You are almost there with your Git patch. You need to fix
> two final things:
> 
>  * The short description of the patch should rather describe what the
>    patch does rather than the reason why it does. Something like
>    "dhcp: update HTTP site location" or similar. But that's just a
>    matter of taste.
> 
>  * Our commit log must include a Markus Kaindl
>    <markus.kaindl@stusta.mhn.de> line. So basically, your commit log
>    should look like:
> 
> =====================================================================
> dhcp: update HTTP site location
> 
> Signed-off-by: Markus Kaindl <markus.kaindl@stusta.mhn.de>
> =====================================================================
> 
> And then your patch will be perfect.
> 
> I am sorry to be annoying about this, but those are the rules we all
> follow in the Buildroot community, and I think it is a good idea to
> explain them to new contributors.
> 
> Thanks for your work and persistence!
> 
> Thomas
> 
> Le Thu, 15 Mar 2012 04:55:06 +0100,
> Markus Kaindl <markus.kaindl@stusta.mhn.de> a ?crit :
> 
>> ---
>>  package/dhcp/dhcp.mk |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
>> index 10bdc2e..9ec27d3 100644
>> --- a/package/dhcp/dhcp.mk
>> +++ b/package/dhcp/dhcp.mk
>> @@ -5,7 +5,7 @@
>>  #############################################################
>>  
>>  DHCP_VERSION  = 4.1-ESV-R4
>> -DHCP_SITE     = http://ftp.isc.org/isc/dhcp
>> +DHCP_SITE     = http://ftp.isc.org/isc/dhcp/$(DHCP_VERSION)
>>  DHCP_CONF_ENV = ac_cv_file__dev_random=yes
>>  DHCP_CONF_OPT = \
>>  	--localstatedir=/var/lib/dhcp \
> 
> 
> 

Hello Thomas,

Peter Korsgaard has fixed it himslef now, so I won't send another one ;)
But thanks for your advice, I'll try to make it right the next time.

Markus

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 900 bytes
Desc: OpenPGP digital signature
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120316/75c7a307/attachment.asc>

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

end of thread, other threads:[~2012-03-16  0:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-15  3:55 [Buildroot] [PATCH] Downloadsite DHCP changed Markus Kaindl
2012-03-15  7:10 ` Thomas Petazzoni
2012-03-16  0:29   ` Markus Kaindl
2012-03-15  9:45 ` Peter Korsgaard

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