From owner-freebsd-mobile@FreeBSD.ORG Fri Apr 4 03:29:23 2003 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D068237B404 for ; Fri, 4 Apr 2003 03:29:23 -0800 (PST) Received: from segalo.cs.poste.it (segalo.cs.poste.it [62.241.4.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EA0D43FBF for ; Fri, 4 Apr 2003 03:29:22 -0800 (PST) (envelope-from andrea.franceschini@postecom.it) Received: from knute.cs.poste.it (192.168.44.146) by segalo.cs.poste.it (6.7.015) id 3E775DE100031CEA; Fri, 4 Apr 2003 13:29:17 +0200 Received: from knute.cs.poste.it (localhost [127.0.0.1]) by knute.cs.poste.it (8.12.6/8.12.6) with ESMTP id h34BLrvA002245; Fri, 4 Apr 2003 13:21:53 +0200 (CEST) (envelope-from andrea.franceschini@postecom.it) Received: (from andrea@localhost) by knute.cs.poste.it (8.12.6/8.12.8/Submit) id h34BLqL6002244; Fri, 4 Apr 2003 13:21:52 +0200 (CEST) (envelope-from andrea.franceschini@postecom.it) X-Authentication-Warning: knute.cs.poste.it: andrea set sender to andrea.franceschini@postecom.it using -f Date: Fri, 4 Apr 2003 13:21:52 +0200 From: Andrea Franceschini To: Emanuel Haupt Message-ID: <20030404112152.GA2012@postecom.it> Mail-Followup-To: Emanuel Haupt , freebsd-mobile@freebsd.org References: <20030402160411.091d62a4.emanuel.haupt@cablecom.ch> <20030403084118.GD1984@postecom.it> <20030403162753.1f64424a.emanuel.haupt@cablecom.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403162753.1f64424a.emanuel.haupt@cablecom.ch> User-Agent: Mutt/1.4i cc: freebsd-mobile@freebsd.org Subject: Re: Compaq Evo N600c, docking station X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:29:24 -0000 On Thu, Apr 03, 2003 at 04:27:53PM +0200, Emanuel Haupt wrote: > hi andrea > > thanks for your answer. i read that man pages over and over again. i > couldn't figure out how you do that. could you show me what exactly i > have to put into my kernel config? i put the following line in my config > file and recompiled the kernel. > > options INCLUDE_CONFIG_FILE > > but i didn't quite get where i can set the NO_RESET flag. > > thanks in advance for you patience. > > emanuel On 4.7 you should explicitly add the keyword 'flags' after the device configuration line, like this: device atkbd0 at atkbdc? irq 1 flags 0x03 ^^^^^^^^^^ where 0x0 mens no bits 0x1 means BIT 0 0x2 means BIT 1 0x4 means BIT 2 If you wanted both bit 0 and 1 you should put 0x3 and so on... On 5.0 i'm not sure but it seem that you'll have to modify the 'hints' file in this way: hint.atkbd.0.flags="0x1" --> hint.atkbd.0.flags="0x3" Bye!