From owner-freebsd-questions@FreeBSD.ORG Tue May 15 16:35:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 163D316A403 for ; Tue, 15 May 2007 16:35:09 +0000 (UTC) (envelope-from victor.engmark@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.228]) by mx1.freebsd.org (Postfix) with ESMTP id AB9E313C487 for ; Tue, 15 May 2007 16:35:08 +0000 (UTC) (envelope-from victor.engmark@gmail.com) Received: by nz-out-0506.google.com with SMTP id s1so226805nze for ; Tue, 15 May 2007 09:35:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=iVUz2aMTC3AApCq8hzZXRSkS2tDxm1jSX3bFJvxeUBDDlN2EdxolLP2xmQffekUGAHPUC+1ECVpkv+jeRfBUgQcXGZwYP3Wu9y10zUTtuBuhQ6/1p0AEdDoBYkz2Wjw3JRS3bOi2ViIoFurtptSsFTWfeVFadCYDyGVZ/NrHhJA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=iSeIpmRZg2QnqnV5jWMcxvUzy5TqQmHYeN7hwmgnvOp8bJ5VxzX58dGnFv7edpRXkyT/a0BItenNaKmTuRPLO2vQmOhdUhd+QRTJ82o8KMBkaLZkywWX1yqE1XD19TBhvoheGvWc4qrIZdWUe1IN3nbgqsh2I2n5uWok6F+6QAM= Received: by 10.114.46.1 with SMTP id t1mr1653927wat.1179246907471; Tue, 15 May 2007 09:35:07 -0700 (PDT) Received: by 10.114.92.17 with HTTP; Tue, 15 May 2007 09:35:07 -0700 (PDT) Message-ID: <7d4f41f50705150935q4c3141c6u8f3b1de0df68d0e7@mail.gmail.com> Date: Tue, 15 May 2007 18:35:07 +0200 From: "Victor Engmark" To: "FreeBSD Questions" In-Reply-To: <7d4f41f50704270757v2c04ee20mc58a2561dc2dbc93@mail.gmail.com> MIME-Version: 1.0 References: <7d4f41f50704270757v2c04ee20mc58a2561dc2dbc93@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Dell D610 touchpad configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2007 16:35:09 -0000 On 4/27/07, Victor Engmark wrote: > > I'm attempting to configure my laptop properly for X.org, and the only > device which doesn't work properly now is the touchpad. The tutorials > I've seen so far seem to assume that all touchpads use the Synaptic > driver, but this is the information I get at boot time, and which I > assume is the touchpad: > $ dmesg | grep psm0 > psm0: irq 12 on atkbdc0 > psm0: [GIANT-LOCKED] > psm0: model GlidePoint, device ID 0 > Finally, I got a working setup with both mice working at the same time. Turns out I had to ditch the synaptics driver. In case someone else needs it, here goes... xorg.conf relevant sections (with #comments): Section "ServerLayout" Identifier "Dell Latitude D610" Screen 0 "Dell Latitude D610 screen" 0 0 InputDevice "Alps GlidePoint Touchpad" InputDevice "Dell USB mouse" InputDevice "Dell Latitude D610 keyboard" EndSection # Don't load synaptics in the "Module" section Section "InputDevice" Identifier "Alps GlidePoint Touchpad" Driver "mouse" # Don' Option "CorePointer" # This makes X.org startup fail if the device can't be initialized Option "Device" "/dev/psm0" # This may be different on other *nixes Option "Protocol" "PS/2" # Using "GlidePoint" gave some weird behavior # The following options are not mandatory, as far as I can see Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "HorizScrollDelta" "100" Option "MinSpeed" "0.06" Option "MaxSpeed" "0.06" Option "AccelFactor" "0.0010" Option "ScrollButtonRepeat" "100" Option "UpDownScrolling" "on" Option "UpDownRepeat" "on" Option "LeftRightScrolling" "on" Option "LeftRightRepeat" "on" Option "SHMConfig" "on" Option "Emulate3Buttons" "off" EndSection Section "InputDevice" Identifier "Dell USB mouse" Driver "mouse" Option "AlwaysCore" "on" Option "Device" "/dev/sysmouse" Option "Protocol" "auto" Option "Buttons" "5" Option "ZAxisMapping" "4 5" # Scroll wheel Option "Emulate3Buttons" "off" EndSection -- Victor Engmark Quidquid latine dictum sit, altum videtur - What is said in Latin, sounds profound