* [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
@ 2011-02-18 8:37 Alexander Holler
2011-03-01 23:13 ` Jason Kridner
0 siblings, 1 reply; 8+ messages in thread
From: Alexander Holler @ 2011-02-18 8:37 UTC (permalink / raw)
To: u-boot
Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the
serials on OMAPs.
Signed-off-by: Alexander Holler <holler@ahsoftware.de>
---
include/configs/omap3_beagle.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
index 5cfa4cb..e442e5b 100644
--- a/include/configs/omap3_beagle.h
+++ b/include/configs/omap3_beagle.h
@@ -189,7 +189,7 @@
#define CONFIG_EXTRA_ENV_SETTINGS \
"loadaddr=0x82000000\0" \
"usbtty=cdc_acm\0" \
- "console=ttyS2,115200n8\0" \
+ "console=ttyO2,115200n8\0" \
"mpurate=500\0" \
"vram=12M\0" \
"dvimode=1024x768MR-16 at 60\0" \
--
1.7.3.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-02-18 8:37 [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2 Alexander Holler
@ 2011-03-01 23:13 ` Jason Kridner
2011-03-02 10:50 ` Thomas Weber
2011-03-24 19:55 ` [U-Boot] " Dirk Behme
0 siblings, 2 replies; 8+ messages in thread
From: Jason Kridner @ 2011-03-01 23:13 UTC (permalink / raw)
To: u-boot
On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler <holler@ahsoftware.de> wrote:
> Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the
> serials on OMAPs.
>
> Signed-off-by: Alexander Holler <holler@ahsoftware.de>
Ack.
> ---
> ?include/configs/omap3_beagle.h | ? ?2 +-
> ?1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
> index 5cfa4cb..e442e5b 100644
> --- a/include/configs/omap3_beagle.h
> +++ b/include/configs/omap3_beagle.h
> @@ -189,7 +189,7 @@
> ?#define CONFIG_EXTRA_ENV_SETTINGS \
> ? ? ? ?"loadaddr=0x82000000\0" \
> ? ? ? ?"usbtty=cdc_acm\0" \
> - ? ? ? "console=ttyS2,115200n8\0" \
> + ? ? ? "console=ttyO2,115200n8\0" \
> ? ? ? ?"mpurate=500\0" \
> ? ? ? ?"vram=12M\0" \
> ? ? ? ?"dvimode=1024x768MR-16 at 60\0" \
> --
> 1.7.3.4
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-01 23:13 ` Jason Kridner
@ 2011-03-02 10:50 ` Thomas Weber
2011-03-02 11:00 ` [U-Boot] [beagleboard] " Alexander Holler
2011-03-24 19:55 ` [U-Boot] " Dirk Behme
1 sibling, 1 reply; 8+ messages in thread
From: Thomas Weber @ 2011-03-02 10:50 UTC (permalink / raw)
To: u-boot
Hello Alexander,
Am 02.03.2011 00:13, schrieb Jason Kridner:
> On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler <holler@ahsoftware.de> wrote:
>> Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the
>> serials on OMAPs.
>>
>> Signed-off-by: Alexander Holler <holler@ahsoftware.de>
>
> Ack.
>
>> ---
>> include/configs/omap3_beagle.h | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
>> index 5cfa4cb..e442e5b 100644
>> --- a/include/configs/omap3_beagle.h
>> +++ b/include/configs/omap3_beagle.h
>> @@ -189,7 +189,7 @@
>> #define CONFIG_EXTRA_ENV_SETTINGS \
>> "loadaddr=0x82000000\0" \
>> "usbtty=cdc_acm\0" \
>> - "console=ttyS2,115200n8\0" \
>> + "console=ttyO2,115200n8\0" \
>> "mpurate=500\0" \
>> "vram=12M\0" \
>> "dvimode=1024x768MR-16 at 60\0" \
>> --
>> 1.7.3.4
can you please do this for all omap3 boards?
Or we have in the end 10 patches for the same problem.
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [beagleboard] Re: [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-02 10:50 ` Thomas Weber
@ 2011-03-02 11:00 ` Alexander Holler
2011-03-24 13:01 ` Albert ARIBAUD
0 siblings, 1 reply; 8+ messages in thread
From: Alexander Holler @ 2011-03-02 11:00 UTC (permalink / raw)
To: u-boot
Hello,
Am 02.03.2011 11:50, schrieb Thomas Weber:
> Hello Alexander,
> Am 02.03.2011 00:13, schrieb Jason Kridner:
>> On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler<holler@ahsoftware.de> wrote:
>>> Linux kernels>= 2.6.36 are using ttyOn instead ttySn for the
>>> serials on OMAPs.
...
> can you please do this for all omap3 boards?
> Or we have in the end 10 patches for the same problem.
Sorry, no. I don't know which boards are using which kernel versions and
there are many boards around with and SDK which are using older kernels.
I think the time of the change should be decided by every board-maintainer.
Regards,
Alexander
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [beagleboard] Re: [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-02 11:00 ` [U-Boot] [beagleboard] " Alexander Holler
@ 2011-03-24 13:01 ` Albert ARIBAUD
2011-03-24 13:51 ` [U-Boot] " Alexander Holler
2011-03-24 19:36 ` [U-Boot] [beagleboard] " Wolfgang Denk
0 siblings, 2 replies; 8+ messages in thread
From: Albert ARIBAUD @ 2011-03-24 13:01 UTC (permalink / raw)
To: u-boot
Cc:ing Dirk as the omap3_beagle maintainer, and Wolfgang for advice.
Le 02/03/2011 12:00, Alexander Holler a ?crit :
> Hello,
>
> Am 02.03.2011 11:50, schrieb Thomas Weber:
>> Hello Alexander,
>> Am 02.03.2011 00:13, schrieb Jason Kridner:
>>> On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler<holler@ahsoftware.de> wrote:
>>>> Linux kernels>= 2.6.36 are using ttyOn instead ttySn for the
>>>> serials on OMAPs.
>
> ....
>
>> can you please do this for all omap3 boards?
>> Or we have in the end 10 patches for the same problem.
>
> Sorry, no. I don't know which boards are using which kernel versions and
> there are many boards around with and SDK which are using older kernels.
> I think the time of the change should be decided by every board-maintainer.
>
> Regards,
>
> Alexander
Apart from Thomas' question, there seems to be no Nak for this patch --
I've taken the liberty to Cc: the board maintainer just in case -- so we
might as well apply it.
Wolfgang, which tree is this patch supposed to go through? Mine because
the board is ARM? yours because it is a board, not arch, patch? Or
whichever?
If mine is ok then I'll apply it to next as in any cas it is not a bugfix.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-24 13:01 ` Albert ARIBAUD
@ 2011-03-24 13:51 ` Alexander Holler
2011-03-24 19:36 ` [U-Boot] [beagleboard] " Wolfgang Denk
1 sibling, 0 replies; 8+ messages in thread
From: Alexander Holler @ 2011-03-24 13:51 UTC (permalink / raw)
To: u-boot
Am 24.03.2011 14:01, schrieb Albert ARIBAUD:
> Cc:ing Dirk as the omap3_beagle maintainer, and Wolfgang for advice.
...
> Apart from Thomas' question, there seems to be no Nak for this patch --
> I've taken the liberty to Cc: the board maintainer just in case -- so we
> might as well apply it.
>
> Wolfgang, which tree is this patch supposed to go through? Mine because
> the board is ARM? yours because it is a board, not arch, patch? Or
> whichever?
Oh, sorry, haven't seen that Dirk is the maintainer, I've only added the
TI-maintainer to cc, which might be wrong.
Regards,
Alexander Holler
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [beagleboard] Re: [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-24 13:01 ` Albert ARIBAUD
2011-03-24 13:51 ` [U-Boot] " Alexander Holler
@ 2011-03-24 19:36 ` Wolfgang Denk
1 sibling, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2011-03-24 19:36 UTC (permalink / raw)
To: u-boot
Dear Albert ARIBAUD,
In message <4D8B40BE.9070702@free.fr> you wrote:
>
> Wolfgang, which tree is this patch supposed to go through? Mine because
> the board is ARM? yours because it is a board, not arch, patch? Or
> whichever?
Formally it would need Dirk's ACK and then go though the TI tree and
then yours. Alternatively, Sandeep's ACK would be needed, too.
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
Documentation is the castor oil of programming.
Managers know it must be good because the programmers hate it so much.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2
2011-03-01 23:13 ` Jason Kridner
2011-03-02 10:50 ` Thomas Weber
@ 2011-03-24 19:55 ` Dirk Behme
1 sibling, 0 replies; 8+ messages in thread
From: Dirk Behme @ 2011-03-24 19:55 UTC (permalink / raw)
To: u-boot
On 02.03.2011 00:13, Jason Kridner wrote:
> On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler<holler@ahsoftware.de> wrote:
>> Linux kernels>= 2.6.36 are using ttyOn instead ttySn for the
>> serials on OMAPs.
>>
>> Signed-off-by: Alexander Holler<holler@ahsoftware.de>
>
> Ack.
Acked-by: Dirk Behme <dirk.behme@googlemail.com>
>> ---
>> include/configs/omap3_beagle.h | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
>> index 5cfa4cb..e442e5b 100644
>> --- a/include/configs/omap3_beagle.h
>> +++ b/include/configs/omap3_beagle.h
>> @@ -189,7 +189,7 @@
>> #define CONFIG_EXTRA_ENV_SETTINGS \
>> "loadaddr=0x82000000\0" \
>> "usbtty=cdc_acm\0" \
>> - "console=ttyS2,115200n8\0" \
>> + "console=ttyO2,115200n8\0" \
>> "mpurate=500\0" \
>> "vram=12M\0" \
>> "dvimode=1024x768MR-16 at 60\0" \
>> --
>> 1.7.3.4
>>
>> _______________________________________________
>> U-Boot mailing list
>> U-Boot at lists.denx.de
>> http://lists.denx.de/mailman/listinfo/u-boot
>>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-03-24 19:55 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-18 8:37 [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2 Alexander Holler
2011-03-01 23:13 ` Jason Kridner
2011-03-02 10:50 ` Thomas Weber
2011-03-02 11:00 ` [U-Boot] [beagleboard] " Alexander Holler
2011-03-24 13:01 ` Albert ARIBAUD
2011-03-24 13:51 ` [U-Boot] " Alexander Holler
2011-03-24 19:36 ` [U-Boot] [beagleboard] " Wolfgang Denk
2011-03-24 19:55 ` [U-Boot] " Dirk Behme
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox