Specify the size of the console ring buffer.
### console
-> `= List of [ vga | com1[H,L] | com2[H,L] | pv | dbgp | xhci | none ]`
+> `= List of [ vga | com1[H,L] | com2[H,L] | pv | dbgp | ehci | xhci | none ]`
> Default: `console=com1,vga`
`pv` indicates that Xen should use Xen's PV console. This option is
only available when used together with `pv-in-pvh`.
-`dbgp` indicates that Xen should use a USB2 debug port.
+`dbgp` or `ehci` indicates that Xen should use a USB2 debug port.
`xhci` indicates that Xen should use a USB3 debug port.
goto common;
}
+ if ( !strncmp(conf, "ehci", 4) && (!conf[4] || conf[4] == ',') )
+ {
+ handle = SERHND_DBGP;
+ goto common;
+ }
+
if ( !strncmp(conf, "xhci", 4) && (!conf[4] || conf[4] == ',') )
{
handle = SERHND_XHCI;