From owner-freebsd-bugs Sun Dec 3 12:21:07 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21262 for bugs-outgoing; Sun, 3 Dec 1995 12:21:07 -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 MAA21231 for ; Sun, 3 Dec 1995 12:20:51 -0800 Received: by dg-rtp.dg.com (5.4R3.10/dg-rtp-v02) id AA26726; Sun, 3 Dec 1995 15:20:19 -0500 Received: from ponds by dg-rtp.dg.com.rtp.dg.com; Sun, 3 Dec 1995 15:20 EST Received: (rivers@localhost) by ponds.UUCP (8.6.11/8.6.5) id PAA19226; Sun, 3 Dec 1995 15:24:01 -0500 Date: Sun, 3 Dec 1995 15:24:01 -0500 From: Thomas David Rivers Message-Id: <199512032024.PAA19226@ponds.UUCP> To: freebsd-bugs@freefall.FreeBSD.org, jkh@freefall.FreeBSD.org, rivers@dg-rtp.dg.com Subject: Hmm... not quite right in my previous diagnosis (SL/IP install) Content-Type: text Content-Length: 1283 Sender: owner-bugs@FreeBSD.ORG Precedence: bulk I wan't correct in the problem diagnosis before, when I indicated ifconfig_sl0 wasn't defined. I was baseing that on the message: The sl0 device is not configured. You will need to do so in the Network configuration menu before proceeding. (line 101 of network.c) However, I see that the C code there is: msgConfirm("The %s device is not configured. You will need to do so\nin the Networking configuration menu before proceeding."); return FALSE; Which, you can see, is missing a value for the '%s' - so the string 'sl0' was likely just picked up off of the stack. This should read: msgConfirm("The %s device is not configured. You will need to do so\nin the Networking configuration menu before proceeding.", dev->name); Thus, the ifconfig environment variable 'ifconfig_cuaa0' must not be defined, or dev->name (in the preceeding two lines) must be incorrect. - Dave Rivers - p.s. Jordan, if you'd like, I can test out any changes you make and let you know the results before you "go public" with this, if you can make new boot floppies. I don't yet have 2.1-RELEASE installed anywhere I could make a boot floppy, or I'd do these changes myself. Until I hear from you, I'll start on that endeavor.