From owner-freebsd-hackers Wed Feb 17 5:16:36 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 75DC010F31 for ; Wed, 17 Feb 1999 05:15:58 -0800 (PST) (envelope-from des@flood.ping.uio.no) Received: (from des@localhost) by flood.ping.uio.no (8.9.2/8.9.1) id OAA36322; Wed, 17 Feb 1999 14:15:45 +0100 (CET) (envelope-from des) To: "Stephen J. Roznowski" Cc: freebsd-hackers@FreeBSD.ORG, nsouch@teaser.fr Subject: Re: lpt -> nlpt change over problem? References: <199902170401.XAA14999@istari.home.net> From: Dag-Erling Smorgrav Date: 17 Feb 1999 14:15:44 +0100 In-Reply-To: "Stephen J. Roznowski"'s message of "Tue, 16 Feb 1999 23:01:23 -0500 (EST)" Message-ID: Lines: 37 X-Mailer: Gnus v5.5/Emacs 19.34 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Stephen J. Roznowski" writes: > There still appears to be a problem with the lpt -> nlpt > change over that recently occurred. In my custom kernel > configuration I still had [I'm running 4.0-CURRENT]: > > ... > device lpt0 at isa? port? tty irq 7 vector lptintr > ... > > My kernel config-ed correctly, but errored during the build > (no surprise). > > Shouldn't I get a warning of some sort during the "config KERNEL" > step? No, because lpt0 is a valid device, since nlpt has been renamed to lpt. Your kernel config should read: device ppc0 at isa? port? tty irq 7 controller ppbus0 at ppc0 device lpt0 at ppbus? You might want to add more ppbus devices, such as: device plip0 at ppbus? device ppi0 at ppbus? (see the man pages for more devices) OBTW, if you're runninc 4.0 you should be aware that the "vector xxxintr" stuff is deprecated and serves no purpose (it's overridden by values hardcoded into every driver). Just remove that part from every device line in your kernel config. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message