Hello,
as I see in the configs for the prebuilt qemu kernels: CONFIG_SERIAL_8250=m CONFIG_SERIAL_AMBA_PL011=y CONFIG_SERIAL_AMBA_PL011_CONSOLE=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y
Does this mean that a serial port like that of qemu (isn't it like a 16550?) doesn't work? I'd like to use "-nographic". I can't manage to get any output using "-nographic -append console=ttyS0".
Regards, Lluís.
On Tue, Sep 01, 2009 at 07:21:06PM +0200, Lluís Batlle wrote:
as I see in the configs for the prebuilt qemu kernels: CONFIG_SERIAL_8250=m CONFIG_SERIAL_AMBA_PL011=y CONFIG_SERIAL_AMBA_PL011_CONSOLE=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y
Does this mean that a serial port like that of qemu (isn't it like a 16550?) doesn't work?
qemu-system-arm can emulate the pl011.
I'd like to use "-nographic". I can't manage to get any output using "-nographic -append console=ttyS0".
Try ttyAMA0 instead of ttyS0?
2009/9/1 Lennert Buytenhek buytenh@wantstofly.org:
On Tue, Sep 01, 2009 at 07:21:06PM +0200, Lluís Batlle wrote: qemu-system-arm can emulate the pl011.
Oh, I didn't know. I thought qemu gave a 8250 or alike.
Try ttyAMA0 instead of ttyS0?
Great, it works! Thank you!