From owner-freebsd-bugs Tue Dec 5 21:20:55 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA10398 for bugs-outgoing; Tue, 5 Dec 1995 21:20:55 -0800 Received: from dg-rtp.dg.com (dg-rtp.rtp.dg.com [128.222.1.2]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id VAA10366 for ; Tue, 5 Dec 1995 21:20:45 -0800 Received: by dg-rtp.dg.com (5.4R3.10/dg-rtp-v02) id AA29697; Wed, 6 Dec 1995 00:20:07 -0500 Received: from ponds by dg-rtp.dg.com.rtp.dg.com; Wed, 6 Dec 1995 00:20 EST Received: (rivers@localhost) by ponds.UUCP (8.6.11/8.6.5) id AAA11826; Wed, 6 Dec 1995 00:05:31 -0500 Date: Wed, 6 Dec 1995 00:05:31 -0500 From: Thomas David Rivers Message-Id: <199512060505.AAA11826@ponds.UUCP> To: freebsd-bugs@freefall.FreeBSD.org, jkh@freefall.FreeBSD.org, rivers@dg-rtp.dg.com Subject: Finally got a new boot floppy & verified my fixes to sysinstall. Content-Type: text Content-Length: 1340 Sender: owner-bugs@FreeBSD.ORG Precedence: bulk Well - After a tortuous process, trying to recreate enough of building a release to get a boot.flp made (I can send details to anyone who wants them..) I was able to verify that my small change to sysinstall/network.c does correct the SL/IP install problems. Just F.Y.I. here's the context diffs again, if someone will committ this to the 'next' release... - Dave Rivers - *** network.c.ori Sat Nov 4 06:09:14 1995 --- network.c Mon Dec 4 13:48:23 1995 *************** *** 115,126 **** else strcpy(ifname, dev->name); ! snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, ifname); cp = variable_get(ifconfig); if (!cp) { dialog_clear(); msgConfirm("The %s device is not configured. You will need to do so\n" ! "in the Networking configuration menu before proceeding.", ifname); return FALSE; } msgNotify("Configuring network device %s.", ifname); --- 115,126 ---- else strcpy(ifname, dev->name); ! snprintf(ifconfig, 255, "%s%s", VAR_IFCONFIG, dev->name); cp = variable_get(ifconfig); if (!cp) { dialog_clear(); msgConfirm("The %s device is not configured. You will need to do so\n" ! "in the Networking configuration menu before proceeding.", dev->name); return FALSE; } msgNotify("Configuring network device %s.", ifname);