public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
@ 2011-07-18  8:48 Yegor Yefremov
  2011-07-18  9:41 ` Albert ARIBAUD
  2011-07-18 10:37 ` Albert ARIBAUD
  0 siblings, 2 replies; 6+ messages in thread
From: Yegor Yefremov @ 2011-07-18  8:48 UTC (permalink / raw)
  To: u-boot



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

* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
  2011-07-18  8:48 [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2 Yegor Yefremov
@ 2011-07-18  9:41 ` Albert ARIBAUD
  2011-07-18 10:18   ` Yegor Yefremov
  2011-07-18 10:37 ` Albert ARIBAUD
  1 sibling, 1 reply; 6+ messages in thread
From: Albert ARIBAUD @ 2011-07-18  9:41 UTC (permalink / raw)
  To: u-boot

Le 18/07/2011 10:48, Yegor Yefremov a ?crit :
>> From 74f884f3d76feda60d8fa1dff1f3fef8bd89acb1 Mon Sep 17 00:00:00 2001
> From: Yegor Yefremov<yegorslists@googlemail.com>
> Date: Mon, 18 Jul 2011 10:37:35 +0200
> Subject: [PATCH] am3517evm: change console device from ttyS2 to ttyO2
>
> the serial device names have been changed from ttySx to ttyOx, so the
> console device name should be also changed to support the latest kernel
> versions.
>
> Signed-off-by: Yegor Yefremov<yegorslists@googlemail.com>
> ---
>   include/configs/am3517_evm.h |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
> index 80ad342..18aaadf 100644
> --- a/include/configs/am3517_evm.h
> +++ b/include/configs/am3517_evm.h
> @@ -190,7 +190,7 @@
>
>   #define CONFIG_EXTRA_ENV_SETTINGS \
>   	"loadaddr=0x82000000\0" \
> -	"console=ttyS2,115200n8\0" \
> +	"console=ttyO2,115200n8\0" \
>   	"mmcargs=setenv bootargs console=${console} " \
>   		"root=/dev/mmcblk0p2 rw " \
>   		"rootfstype=ext3 rootwait\0" \

Cc:ing board maintainer, Vaibhav Hiremath <hvaibhav@ti.com> according to 
MAINTAINERS, for ACK.NAK.

(apologies: I should have done this already in reply to patch V1).

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
  2011-07-18  9:41 ` Albert ARIBAUD
@ 2011-07-18 10:18   ` Yegor Yefremov
  2011-07-18 10:23     ` Hiremath, Vaibhav
  0 siblings, 1 reply; 6+ messages in thread
From: Yegor Yefremov @ 2011-07-18 10:18 UTC (permalink / raw)
  To: u-boot

Am 18.07.2011 11:41, schrieb Albert ARIBAUD:
> Le 18/07/2011 10:48, Yegor Yefremov a ?crit :
>>> From 74f884f3d76feda60d8fa1dff1f3fef8bd89acb1 Mon Sep 17 00:00:00 2001
>> From: Yegor Yefremov<yegorslists@googlemail.com>
>> Date: Mon, 18 Jul 2011 10:37:35 +0200
>> Subject: [PATCH] am3517evm: change console device from ttyS2 to ttyO2
>>
>> the serial device names have been changed from ttySx to ttyOx, so the
>> console device name should be also changed to support the latest kernel
>> versions.
>>
>> Signed-off-by: Yegor Yefremov<yegorslists@googlemail.com>
>> ---
>>   include/configs/am3517_evm.h |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
>> index 80ad342..18aaadf 100644
>> --- a/include/configs/am3517_evm.h
>> +++ b/include/configs/am3517_evm.h
>> @@ -190,7 +190,7 @@
>>
>>   #define CONFIG_EXTRA_ENV_SETTINGS \
>>       "loadaddr=0x82000000\0" \
>> -    "console=ttyS2,115200n8\0" \
>> +    "console=ttyO2,115200n8\0" \
>>       "mmcargs=setenv bootargs console=${console} " \
>>           "root=/dev/mmcblk0p2 rw " \
>>           "rootfstype=ext3 rootwait\0" \
>
> Cc:ing board maintainer, Vaibhav Hiremath <hvaibhav@ti.com> according to MAINTAINERS, for ACK.NAK.
>
> (apologies: I should have done this already in reply to patch V1).

Could you apply the patch (v2) now?

Yegor

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

* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
  2011-07-18 10:18   ` Yegor Yefremov
@ 2011-07-18 10:23     ` Hiremath, Vaibhav
  2011-07-18 10:37       ` Albert ARIBAUD
  0 siblings, 1 reply; 6+ messages in thread
From: Hiremath, Vaibhav @ 2011-07-18 10:23 UTC (permalink / raw)
  To: u-boot


> -----Original Message-----
> From: Yegor Yefremov [mailto:yegor_sub1 at visionsystems.de]
> Sent: Monday, July 18, 2011 3:48 PM
> To: Albert ARIBAUD
> Cc: u-boot at lists.denx.de; Hiremath, Vaibhav
> Subject: Re: [PATCH v2] am3517evm: change console device from ttyS2 to
> ttyO2
> 
> Am 18.07.2011 11:41, schrieb Albert ARIBAUD:
> > Le 18/07/2011 10:48, Yegor Yefremov a ?crit :
> >>> From 74f884f3d76feda60d8fa1dff1f3fef8bd89acb1 Mon Sep 17 00:00:00 2001
> >> From: Yegor Yefremov<yegorslists@googlemail.com>
> >> Date: Mon, 18 Jul 2011 10:37:35 +0200
> >> Subject: [PATCH] am3517evm: change console device from ttyS2 to ttyO2
> >>
> >> the serial device names have been changed from ttySx to ttyOx, so the
> >> console device name should be also changed to support the latest kernel
> >> versions.
> >>
> >> Signed-off-by: Yegor Yefremov<yegorslists@googlemail.com>
> >> ---
> >>   include/configs/am3517_evm.h |    2 +-
> >>   1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/include/configs/am3517_evm.h
> b/include/configs/am3517_evm.h
> >> index 80ad342..18aaadf 100644
> >> --- a/include/configs/am3517_evm.h
> >> +++ b/include/configs/am3517_evm.h
> >> @@ -190,7 +190,7 @@
> >>
> >>   #define CONFIG_EXTRA_ENV_SETTINGS \
> >>       "loadaddr=0x82000000\0" \
> >> -    "console=ttyS2,115200n8\0" \
> >> +    "console=ttyO2,115200n8\0" \
> >>       "mmcargs=setenv bootargs console=${console} " \
> >>           "root=/dev/mmcblk0p2 rw " \
> >>           "rootfstype=ext3 rootwait\0" \
> >
> > Cc:ing board maintainer, Vaibhav Hiremath <hvaibhav@ti.com> according to
> MAINTAINERS, for ACK.NAK.
> >
> > (apologies: I should have done this already in reply to patch V1).
> 
> Could you apply the patch (v2) now?
> 
[Hiremath, Vaibhav] Acked-by: Vaibhav Hiremath <hvaibhav@ti.com>

Thanks,
Vaibhav

> Yegor

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

* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
  2011-07-18  8:48 [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2 Yegor Yefremov
  2011-07-18  9:41 ` Albert ARIBAUD
@ 2011-07-18 10:37 ` Albert ARIBAUD
  1 sibling, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2011-07-18 10:37 UTC (permalink / raw)
  To: u-boot

Hi Yegor,

Le 18/07/2011 10:48, Yegor Yefremov a ?crit :
>> From 74f884f3d76feda60d8fa1dff1f3fef8bd89acb1 Mon Sep 17 00:00:00 2001
> From: Yegor Yefremov<yegorslists@googlemail.com>
> Date: Mon, 18 Jul 2011 10:37:35 +0200
> Subject: [PATCH] am3517evm: change console device from ttyS2 to ttyO2
>
> the serial device names have been changed from ttySx to ttyOx, so the
> console device name should be also changed to support the latest kernel
> versions.
>
> Signed-off-by: Yegor Yefremov<yegorslists@googlemail.com>
> ---
>   include/configs/am3517_evm.h |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
> index 80ad342..18aaadf 100644
> --- a/include/configs/am3517_evm.h
> +++ b/include/configs/am3517_evm.h
> @@ -190,7 +190,7 @@
>
>   #define CONFIG_EXTRA_ENV_SETTINGS \
>   	"loadaddr=0x82000000\0" \
> -	"console=ttyS2,115200n8\0" \
> +	"console=ttyO2,115200n8\0" \
>   	"mmcargs=setenv bootargs console=${console} " \
>   		"root=/dev/mmcblk0p2 rw " \
>   		"rootfstype=ext3 rootwait\0" \

Applied, with Vaibhav's Ack, to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2
  2011-07-18 10:23     ` Hiremath, Vaibhav
@ 2011-07-18 10:37       ` Albert ARIBAUD
  0 siblings, 0 replies; 6+ messages in thread
From: Albert ARIBAUD @ 2011-07-18 10:37 UTC (permalink / raw)
  To: u-boot

Le 18/07/2011 12:23, Hiremath, Vaibhav a ?crit :
>
>> -----Original Message-----
>> From: Yegor Yefremov [mailto:yegor_sub1 at visionsystems.de]
>> Sent: Monday, July 18, 2011 3:48 PM
>> To: Albert ARIBAUD
>> Cc: u-boot at lists.denx.de; Hiremath, Vaibhav
>> Subject: Re: [PATCH v2] am3517evm: change console device from ttyS2 to
>> ttyO2
>>
>> Am 18.07.2011 11:41, schrieb Albert ARIBAUD:
>>> Le 18/07/2011 10:48, Yegor Yefremov a ?crit :
>>>>>  From 74f884f3d76feda60d8fa1dff1f3fef8bd89acb1 Mon Sep 17 00:00:00 2001
>>>> From: Yegor Yefremov<yegorslists@googlemail.com>
>>>> Date: Mon, 18 Jul 2011 10:37:35 +0200
>>>> Subject: [PATCH] am3517evm: change console device from ttyS2 to ttyO2
>>>>
>>>> the serial device names have been changed from ttySx to ttyOx, so the
>>>> console device name should be also changed to support the latest kernel
>>>> versions.
>>>>
>>>> Signed-off-by: Yegor Yefremov<yegorslists@googlemail.com>
>>>> ---
>>>>    include/configs/am3517_evm.h |    2 +-
>>>>    1 files changed, 1 insertions(+), 1 deletions(-)
>>>>
>>>> diff --git a/include/configs/am3517_evm.h
>> b/include/configs/am3517_evm.h
>>>> index 80ad342..18aaadf 100644
>>>> --- a/include/configs/am3517_evm.h
>>>> +++ b/include/configs/am3517_evm.h
>>>> @@ -190,7 +190,7 @@
>>>>
>>>>    #define CONFIG_EXTRA_ENV_SETTINGS \
>>>>        "loadaddr=0x82000000\0" \
>>>> -    "console=ttyS2,115200n8\0" \
>>>> +    "console=ttyO2,115200n8\0" \
>>>>        "mmcargs=setenv bootargs console=${console} " \
>>>>            "root=/dev/mmcblk0p2 rw " \
>>>>            "rootfstype=ext3 rootwait\0" \
>>>
>>> Cc:ing board maintainer, Vaibhav Hiremath<hvaibhav@ti.com>  according to
>> MAINTAINERS, for ACK.NAK.
>>>
>>> (apologies: I should have done this already in reply to patch V1).
>>
>> Could you apply the patch (v2) now?
>>
> [Hiremath, Vaibhav] Acked-by: Vaibhav Hiremath<hvaibhav@ti.com>
>
> Thanks,
> Vaibhav

Now, I can :)

(I did insert Vaibhav's Acked-by manually in the commit message, though)

>> Yegor

Amicalement,
-- 
Albert.

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

end of thread, other threads:[~2011-07-18 10:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-18  8:48 [U-Boot] [PATCH v2] am3517evm: change console device from ttyS2 to ttyO2 Yegor Yefremov
2011-07-18  9:41 ` Albert ARIBAUD
2011-07-18 10:18   ` Yegor Yefremov
2011-07-18 10:23     ` Hiremath, Vaibhav
2011-07-18 10:37       ` Albert ARIBAUD
2011-07-18 10:37 ` Albert ARIBAUD

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