# HG changeset patch # User Rob Landley # Date 1197934442 21600 # Node ID 2f7ca1a1e274c2b2ea6a6b0e1f0cc4884f36d542 # Parent 98d1fc53b1c46344457085aeeec1fd99c0340af7 minicom.sh should check for a char device, not a file. diff -r 98d1fc53b1c4 -r 2f7ca1a1e274 scripts/minicom.sh --- a/scripts/minicom.sh Sun Dec 16 18:02:44 2007 -0600 +++ b/scripts/minicom.sh Mon Dec 17 17:34:02 2007 -0600 @@ -2,7 +2,7 @@ # If you want to use toybox netcat to talk to a serial port, use this. -if [ ! -f "$1" ] +if [ ! -c "$1" ] then echo "Usage: minicom.sh /dev/ttyS0" exit 1