From owner-freebsd-questions Thu Feb 23 21:06:39 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id VAA25660 for questions-outgoing; Thu, 23 Feb 1995 21:06:39 -0800 Received: from xi.dorm.umd.edu (xi.dorm.umd.edu [129.2.140.12]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id VAA25654 for ; Thu, 23 Feb 1995 21:06:37 -0800 Received: (from smpatel@localhost) by xi.dorm.umd.edu (8.6.10/8.6.9) id AAA01057; Fri, 24 Feb 1995 00:05:56 -0500 Date: Fri, 24 Feb 1995 00:05:56 -0500 (EST) From: Sujal Patel X-Sender: smpatel@xi.dorm.umd.edu To: David Kelly cc: freebsd-questions@FreeBSD.org, dkelly@vespucci.iquest.com Subject: Re: NE2100 and FreeBSD? In-Reply-To: <199502240334.VAA26748@vespucci.iquest.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: questions-owner@FreeBSD.org Precedence: bulk On Thu, 23 Feb 1995, David Kelly wrote: > Playing with both the official January release of FreeBSD and the 21095 > snap, I have failed to figure out how to compile in support for my NE2100 > ethernet card. I made a copy of GENERIC named DMK, added: > device lnc0 at isa? port 0x360 net irq 9 drq 3 vector isintr ^^^^^^ in 21095 Snap, You need to use lncintr, isintr is no longer used: device lnc0 at isa? port 0x360 net irq 9 drq 3 vector lncintr if you're using the FreeBSD 2.0 you'll want: device is0 at isa? port 0x360 net irq 9 drq 3 vector isintr Sujal