diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-26 19:28:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-26 19:28:06 +0000 |
commit | 6b747bddcf3bf43203ec4f1d5388a4bb11d6f6e3 (patch) | |
tree | 997fee1538b557fbf986fbd9bdde12b7d18b2206 /release/sysinstall/media_strategy.c | |
parent | c6563af053bb945798648d329cceeba5bccbce41 (diff) | |
download | FreeBSD-src-6b747bddcf3bf43203ec4f1d5388a4bb11d6f6e3.zip FreeBSD-src-6b747bddcf3bf43203ec4f1d5388a4bb11d6f6e3.tar.gz |
Clean up the configuration stuff a bit more - we should now populate
/etc with good things(tm).
Fire off ppp with all the proper initial options set.
Diffstat (limited to 'release/sysinstall/media_strategy.c')
-rw-r--r-- | release/sysinstall/media_strategy.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/release/sysinstall/media_strategy.c b/release/sysinstall/media_strategy.c index 57e92d5..e168153 100644 --- a/release/sysinstall/media_strategy.c +++ b/release/sysinstall/media_strategy.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: media_strategy.c,v 1.25 1995/05/26 10:58:51 jkh Exp $ + * $Id: media_strategy.c,v 1.26 1995/05/26 11:21:49 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -554,10 +554,7 @@ mediaInitNetwork(Device *dev) configResolv(); if (!strncmp("cuaa", dev->name, 4)) { - if (tcpStartPPP()) { - msgConfirm("You have selected a serial device as your network installation device.\nThe PPP dialer is now running on the 3rd screen (type ALT-F3 to interact\nwith it) and should be used to establish the link BEFORE YOU HIT RETURN\nhere! Once you hit return in this screen (type ALT-F1 to return to this\nscreen from the PPP screen) the installation will assume that your link\nis set up and begin transfering the distributions over PPP."); - } - else { + if (!tcpStartPPP(dev)) { msgConfirm("Unable to start PPP! This installation method\ncannot be used."); return FALSE; } |