Reputation: 355
Currently I am working on Yocto OS for my project. My question regarding debugging. In normal practice, the debug information is sent through the serial port. I aware about ssh debug. I have two questions:
Upvotes: 2
Views: 1061
Reputation: 4709
Because a serial driver can be simple and implemented without interrupts (it’s how the Linux kernel console actually does). This is a requirement due to emergency cases when crash log should be sent as much as possible and as full as possible.
You have a few options:
/dev/ttyUSB0
, ornetconsole
, orVariant c) is partially supported in the v4.13-rc1 Linux kernel, there is HOWTO file (in the kernel source tree Documentation/driver-api/usb/usb3-debug-port.rst).
Upvotes: 2