I'm working with the DM365 EVM, and we're going to need to use the serial port for something else but still need access to the console. So we're trying to get USB-serial support working. So far, we've re-built the kernel with USB-serial drivers support, and we've changed part of the U-boot bootargs from:
console=ttyS0,115200n8
to
console=ttyUSB0,115200n8
The jumpers on the EVM are set for USB Host mode and the ID pin is pulled low.
At this point, when I let the system boot, the output is sent correctly over ttyUSB0 and I can see the boot sequence running on my terminal. However, as soon as the process finishes and I'm left at the Arago Project login screen, the output is back to ttyS0 (in fact, it goes back to ttyS0 before the "Arago Project" stuff prints). I switch back to serial and can then interact again (and beneath the "Arago Project" logo it indicates ttyS0).
Is there something else I can change so that the output will default to ttyUSB0 and not use ttyS0? If not, is there a way I can redirect ttyS0 to ttyUSB0 after the system finishes booting? I came across one thing while searching Google that suggested these commands:
rm /dev/ttyS0
ln -s /dev/ttyUSB0 /dev/ttyS0
but that didn't work for me.
Thanks.
Joel