summaryrefslogtreecommitdiffstats
path: root/release/netinst.sh
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-11-18 19:09:33 +0000
committerjkh <jkh@FreeBSD.org>1994-11-18 19:09:33 +0000
commit120c518a0ec824d86e14a0ed4b11aa3f863780d5 (patch)
tree5697aaa8d9d0e5eed79abf8c3f4f76f8f80aa6a5 /release/netinst.sh
parent8fe145ab13a03ebc55aa3d6cbe525d0ded3e36b5 (diff)
downloadFreeBSD-src-120c518a0ec824d86e14a0ed4b11aa3f863780d5.zip
FreeBSD-src-120c518a0ec824d86e14a0ed4b11aa3f863780d5.tar.gz
Some fields overflowed. Fix 'em up.
Diffstat (limited to 'release/netinst.sh')
-rw-r--r--release/netinst.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/netinst.sh b/release/netinst.sh
index acfa81c..55e2144 100644
--- a/release/netinst.sh
+++ b/release/netinst.sh
@@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: netinst.sh,v 1.5 1994/11/18 11:01:33 jkh Exp $
+# $Id: netinst.sh,v 1.6 1994/11/18 16:27:54 jkh Exp $
if [ "$_NETINST_SH_LOADED_" = "yes" ]; then
return 0
@@ -69,7 +69,9 @@ network_setup_slip()
chmod 666 /var/log/aculog > /dev/null 2>&1
confirm "You may now dialog with your modem and set up the slip connection.\nBe sure to disable DTR sensitivity (usually with AT&D0) or the modem may\nhang up when you exit 'cu'. Use ~. to exit cu and continue."
dialog --clear
- cu -l $serial_interface -s $serial_speed
+ # Grottyness to deal with a weird crunch bug.
+ if [ ! -f /stand/cu ]; then ln /stand/tip /stand/cu; fi
+ /stand/cu -l $serial_interface -s $serial_speed
dialog --clear
fi
}
OpenPOWER on IntegriCloud