From owner-freebsd-questions@FreeBSD.ORG Wed May 3 01:27:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73B8C16A400 for ; Wed, 3 May 2006 01:27:29 +0000 (UTC) (envelope-from herriojr@gmail.com) Received: from nf-out-0910.google.com (nproxy.gmail.com [64.233.182.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 750C743D45 for ; Wed, 3 May 2006 01:27:28 +0000 (GMT) (envelope-from herriojr@gmail.com) Received: by nf-out-0910.google.com with SMTP id x30so36786nfb for ; Tue, 02 May 2006 18:27:23 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=TqgJonuJK7lMuZiPQ+U2g19b1psO61dSTyKEE5eT/tPZMG3r7nlegPqbBH5kAjCF0OK93mg4u9FyMbI1kd0fIjOudqtG6JPVmD8T5/35K4BY1taxcg7i8Vn5aDq/Kvy6YOSulwzsxpZcdmcuTd8M9oCN34WiQfcsC/h07C/Menw= Received: by 10.48.254.17 with SMTP id b17mr986521nfi; Tue, 02 May 2006 18:27:18 -0700 (PDT) Received: by 10.49.29.2 with HTTP; Tue, 2 May 2006 18:27:18 -0700 (PDT) Message-ID: <6a56d69c0605021827m7fe1923l167cff5d952cfa11@mail.gmail.com> Date: Wed, 3 May 2006 01:27:18 +0000 From: "Jonathan Herriott" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: USB Mouse on Laptop 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: Wed, 03 May 2006 01:27:29 -0000 Hi! I currently just fixed moused to start up using my laptop's mousepad in /etc/rc.conf using the following options: moused_enable=3D"YES" moused_port=3D"/dev/psm0" moused_flags=3D"" #This is another problem of mine, I can't get the fou= r extra buttons on my mousepad to work because I don't know what to specify with -z, but this isn't the point of this post moused_type=3D"ps/2" so after booting and hooking up my USB mouse, I type: > ps -aux | grep moused root 1019 0.0 0.1 1208 752 ?? Is 8:32PM 0:00.00 moused -p /dev/psm0 -t ps/2 root 1275 0.0 0.2 1208 784 ?? Ss 8:54PM =20 0:00.12/usr/sbin/moused -p /dev/ums0 -t ps/2 -I /var/run/moused.ums0.pid So, I can tell that it is using the same defaults that I specified in my /etc/rc.conf file, but I can't figure out how to differentiate between the two in /etc/rc.conf. I tried running usbd -vd to figure out what the devic= e information, so I could enter it into /etc/usbd.conf file: device "Basic Optical Mouse, Microsoft" vendor 0x045e product 0x0084 release 0x0000 attach '"/usr/sbin/moused -p /dev/${DEVNAME} -t auto -z "4 5" -I /var/run/moused.${DEVNAME}.pid"' Which when I kill everything and run usbd and attach my device again, I still get the same output from ps -aux | grep moused. Also, I noticed whil= e I killed usbd, I can still attach my usb mouse, so where should I be lookin= g in order to get my usb mouse to attach differently than stated in my rc.conffile? Thanks, Jon