diff options
author | ache <ache@FreeBSD.org> | 1994-12-04 23:54:39 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-12-04 23:54:39 +0000 |
commit | 347f69c61b1e035e95c6d4a85ad02ddd034a9a47 (patch) | |
tree | 7dd98e54fee59655e22eecef6f7fb98b29ff1955 /etc/rc.d/serial | |
parent | c45aabace056bce265c4a4faac4deee8687bd67e (diff) | |
download | FreeBSD-src-347f69c61b1e035e95c6d4a85ad02ddd034a9a47.zip FreeBSD-src-347f69c61b1e035e95c6d4a85ad02ddd034a9a47.tar.gz |
cua*0? --> cua*a?
Diffstat (limited to 'etc/rc.d/serial')
-rw-r--r-- | etc/rc.d/serial | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/etc/rc.d/serial b/etc/rc.d/serial index 7f042e8..c2d11b5 100644 --- a/etc/rc.d/serial +++ b/etc/rc.d/serial @@ -16,8 +16,8 @@ default() { comcontrol /dev/ttyd$i dtrwait 300 stty </dev/ttyid$i -clocal crtscts hupcl 9600 reprint ^R stty </dev/ttyld$i -clocal -crtscts -hupcl 0 - stty </dev/cuai0$i -clocal crtscts hupcl 9600 reprint ^R - stty </dev/cual0$i -clocal -crtscts -hupcl 0 + stty </dev/cuaia$i -clocal crtscts hupcl 9600 reprint ^R + stty </dev/cuala$i -clocal -crtscts -hupcl 0 done } @@ -27,13 +27,13 @@ maybe() { do # Don't use ^R; it breaks bash's ^R when typed ahead. stty </dev/ttyid$i reprint undef - stty </dev/cuai0$i reprint undef + stty </dev/cuaia$i reprint undef # Lock clocal off on dialin device for security. stty </dev/ttyld$i clocal # Lock the speeds to use old binaries that don't support them. # Any legal speed works to lock the initial speed. stty </dev/ttyld$i 300 - stty </dev/cual0$i 300 + stty </dev/cuala$i 300 done } @@ -46,8 +46,8 @@ modem() { # Speed reasonable for V42bis. stty </dev/ttyid$i crtscts 57600 stty </dev/ttyld$i crtscts - stty </dev/cuai0$i crtscts 57600 - stty </dev/cual0$i crtscts + stty </dev/cuaia$i crtscts 57600 + stty </dev/cuala$i crtscts done } @@ -59,8 +59,8 @@ mouse() { # Standard speed for Microsoft mouse. stty </dev/ttyid$i clocal -hupcl 1200 stty </dev/ttyld$i clocal hupcl - stty </dev/cuai0$i clocal -hupcl 1200 - stty </dev/cual0$i clocal hupcl + stty </dev/cuaia$i clocal -hupcl 1200 + stty </dev/cuala$i clocal hupcl done } @@ -76,7 +76,7 @@ terminal() { do comcontrol /dev/ttyd$i dtrwait 0 stty </dev/ttyid$i 115200 - stty </dev/cuai0$i 115200 + stty </dev/cuaia$i 115200 done } |