docs: fix typo in isa-debugcon example

The <serial> opening tag is paired with the </console> closing tag; that's
a mismatch. The question is then whether to modify the former to
<console>, or the latter to </serial>.

Per section "Relationship between serial ports and consoles", <serial> is
used for emulated (not paravirt) consoles, and it's the type that's
suitable for early debug output (such as from firmware). Thus, change
</console> to </serial>.

Cc: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: Andrea Bolognani <abologna@redhat.com>
Fixes: 654968381d
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Laszlo Ersek 2023-05-18 14:59:38 +02:00 committed by Ján Tomko
parent ffa258a39d
commit f06d15b512

View File

@ -6634,7 +6634,7 @@ Serial port
<serial type='pty'>
<target type='isa-debug'/>
<address type='isa' iobase='0x402'/>
</console>
</serial>
</devices>
...