Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI)
@ 2016-04-18 21:41 Luca Ceresoli
  2016-04-18 22:10 ` Yann E. MORIN
  2016-04-18 22:12 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Luca Ceresoli @ 2016-04-18 21:41 UTC (permalink / raw)
  To: buildroot

The defconfigs for the Raspberry Pi boards start a console on HDMI in
addition to the classic one on UART. Document this feature in the
readme.

Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
---
 board/raspberrypi/readme.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/board/raspberrypi/readme.txt b/board/raspberrypi/readme.txt
index b21a75a6ee78..896be2d8a464 100644
--- a/board/raspberrypi/readme.txt
+++ b/board/raspberrypi/readme.txt
@@ -74,4 +74,6 @@ Copy the bootable "sdcard.img" onto an SD card with "dd":
   $ sudo dd if=output/images/sdcard.img of=/dev/sdX
 
 Insert the SDcard into your Raspberry Pi, and power it up. Your new system
-should come up now.
+should come up now and start two consoles: one on the serial port on
+the P1 header, one on the HDMI output where you can login using a USB
+keyboard.
-- 
1.9.1

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

* [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI)
  2016-04-18 21:41 [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI) Luca Ceresoli
@ 2016-04-18 22:10 ` Yann E. MORIN
  2016-04-18 22:12 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2016-04-18 22:10 UTC (permalink / raw)
  To: buildroot

Luca, All,

On 2016-04-18 23:41 +0200, Luca Ceresoli spake thusly:
> The defconfigs for the Raspberry Pi boards start a console on HDMI in
> addition to the classic one on UART. Document this feature in the
> readme.
> 
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  board/raspberrypi/readme.txt | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/board/raspberrypi/readme.txt b/board/raspberrypi/readme.txt
> index b21a75a6ee78..896be2d8a464 100644
> --- a/board/raspberrypi/readme.txt
> +++ b/board/raspberrypi/readme.txt
> @@ -74,4 +74,6 @@ Copy the bootable "sdcard.img" onto an SD card with "dd":
>    $ sudo dd if=output/images/sdcard.img of=/dev/sdX
>  
>  Insert the SDcard into your Raspberry Pi, and power it up. Your new system
> -should come up now.
> +should come up now and start two consoles: one on the serial port on
> +the P1 header, one on the HDMI output where you can login using a USB
> +keyboard.
> -- 
> 1.9.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI)
  2016-04-18 21:41 [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI) Luca Ceresoli
  2016-04-18 22:10 ` Yann E. MORIN
@ 2016-04-18 22:12 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-04-18 22:12 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 18 Apr 2016 23:41:30 +0200, Luca Ceresoli wrote:
> The defconfigs for the Raspberry Pi boards start a console on HDMI in
> addition to the classic one on UART. Document this feature in the
> readme.
> 
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
> ---
>  board/raspberrypi/readme.txt | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-04-18 22:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-18 21:41 [Buildroot] [PATCH] raspberrypi, raspberrypi2: document the two consoles (UART+HDMI) Luca Ceresoli
2016-04-18 22:10 ` Yann E. MORIN
2016-04-18 22:12 ` Thomas Petazzoni

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