public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux
@ 2011-09-15  5:16 Heiko Schocher
  2011-12-14  9:39 ` Heiko Schocher
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Heiko Schocher @ 2011-09-15  5:16 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Gerald van Baren <gvb.uboot@gmail.com>
---
 arch/arm/lib/bootm.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index 802e833..afa0093 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -206,6 +206,8 @@ static int bootm_linux_fdt(int machid, bootm_headers_t *images)
 
 	fixup_memory_node(*of_flat_tree);
 
+	fdt_fixup_ethernet(*of_flat_tree);
+
 	fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
 
 	announce_and_cleanup();
-- 
1.7.6

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

* [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux
  2011-09-15  5:16 [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux Heiko Schocher
@ 2011-12-14  9:39 ` Heiko Schocher
  2011-12-14 14:39   ` Jerry Van Baren
  2011-12-17 22:53 ` Wolfgang Denk
  2011-12-19 10:05 ` Albert ARIBAUD
  2 siblings, 1 reply; 5+ messages in thread
From: Heiko Schocher @ 2011-12-14  9:39 UTC (permalink / raw)
  To: u-boot

Hello Albert, Gerald,

Heiko Schocher wrote:
> Signed-off-by: Heiko Schocher <hs@denx.de>
> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
> Cc: Gerald van Baren <gvb.uboot@gmail.com>
> ---
>  arch/arm/lib/bootm.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
> index 802e833..afa0093 100644
> --- a/arch/arm/lib/bootm.c
> +++ b/arch/arm/lib/bootm.c
> @@ -206,6 +206,8 @@ static int bootm_linux_fdt(int machid, bootm_headers_t *images)
>  
>  	fixup_memory_node(*of_flat_tree);
>  
> +	fdt_fixup_ethernet(*of_flat_tree);
> +
>  	fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
>  
>  	announce_and_cleanup();

Some comments on this patch? Can it go in, in the current release?

bye,
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

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

* [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux
  2011-12-14  9:39 ` Heiko Schocher
@ 2011-12-14 14:39   ` Jerry Van Baren
  0 siblings, 0 replies; 5+ messages in thread
From: Jerry Van Baren @ 2011-12-14 14:39 UTC (permalink / raw)
  To: u-boot

Hi Heiko,

On 12/14/2011 04:39 AM, Heiko Schocher wrote:
> Hello Albert, Gerald,
>
> Heiko Schocher wrote:
>> Signed-off-by: Heiko Schocher<hs@denx.de>
>> Cc: Albert ARIBAUD<albert.u.boot@aribaud.net>
>> Cc: Gerald van Baren<gvb.uboot@gmail.com>
>> ---
>>   arch/arm/lib/bootm.c |    2 ++
>>   1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
>> index 802e833..afa0093 100644
>> --- a/arch/arm/lib/bootm.c
>> +++ b/arch/arm/lib/bootm.c
>> @@ -206,6 +206,8 @@ static int bootm_linux_fdt(int machid, bootm_headers_t *images)
>>
>>   	fixup_memory_node(*of_flat_tree);
>>
>> +	fdt_fixup_ethernet(*of_flat_tree);
>> +
>>   	fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
>>
>>   	announce_and_cleanup();
>
> Some comments on this patch? Can it go in, in the current release?

I would defer to Albert, it is in his domain (ARM).

> bye,
> Heiko

Best regards,
gvb

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

* [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux
  2011-09-15  5:16 [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux Heiko Schocher
  2011-12-14  9:39 ` Heiko Schocher
@ 2011-12-17 22:53 ` Wolfgang Denk
  2011-12-19 10:05 ` Albert ARIBAUD
  2 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2011-12-17 22:53 UTC (permalink / raw)
  To: u-boot

Dear Heiko Schocher,

In message <1316063790-4583-1-git-send-email-hs@denx.de> you wrote:
> Signed-off-by: Heiko Schocher <hs@denx.de>
> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
> Cc: Gerald van Baren <gvb.uboot@gmail.com>
> ---
>  arch/arm/lib/bootm.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)

Acked-by: Wolfgang Denk <wd@denx.de>


Albert, can you please take this through your tree for -rc2 ?

Thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If you can't beat it or corrupt it, you pretend it was your  idea  in
the first place.                 - Terry Pratchett, _Guards! Guards!_

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

* [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux
  2011-09-15  5:16 [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux Heiko Schocher
  2011-12-14  9:39 ` Heiko Schocher
  2011-12-17 22:53 ` Wolfgang Denk
@ 2011-12-19 10:05 ` Albert ARIBAUD
  2 siblings, 0 replies; 5+ messages in thread
From: Albert ARIBAUD @ 2011-12-19 10:05 UTC (permalink / raw)
  To: u-boot

Hi Heiko,

Le 15/09/2011 07:16, Heiko Schocher a ?crit :
> Signed-off-by: Heiko Schocher<hs@denx.de>
> Cc: Albert ARIBAUD<albert.u.boot@aribaud.net>
> Cc: Gerald van Baren<gvb.uboot@gmail.com>
> ---
>   arch/arm/lib/bootm.c |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
> index 802e833..afa0093 100644
> --- a/arch/arm/lib/bootm.c
> +++ b/arch/arm/lib/bootm.c
> @@ -206,6 +206,8 @@ static int bootm_linux_fdt(int machid, bootm_headers_t *images)
>
>   	fixup_memory_node(*of_flat_tree);
>
> +	fdt_fixup_ethernet(*of_flat_tree);
> +
>   	fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
>
>   	announce_and_cleanup();

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

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

end of thread, other threads:[~2011-12-19 10:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15  5:16 [U-Boot] [PATCH] arm, fdt: update ethernet mac address before booting Linux Heiko Schocher
2011-12-14  9:39 ` Heiko Schocher
2011-12-14 14:39   ` Jerry Van Baren
2011-12-17 22:53 ` Wolfgang Denk
2011-12-19 10:05 ` Albert ARIBAUD

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