Hi Michael,
No need for kernel support. This simple shell-script is what I use for
a project at the moment.
greetings,
Rob van Nieuwkerk
------------------------------------------------
#!/bin/sh
TCP_PORT=4000
SERIAL_PORT=/dev/ttyS1
BAUDRATE=19200
while (true)
do
(stty $BAUDRATE -echo clocal raw pass8 ; exec nc -l -p $TCP_PORT) \
< $SERIAL_PORT > $SERIAL_PORT
done
------------------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/