From owner-freebsd-usb@FreeBSD.ORG Thu Feb 7 21:30:02 2013 Return-Path: Delivered-To: freebsd-usb@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CE17FB18 for ; Thu, 7 Feb 2013 21:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BE8FBF90 for ; Thu, 7 Feb 2013 21:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r17LU2ex096914 for ; Thu, 7 Feb 2013 21:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r17LU2hI096913; Thu, 7 Feb 2013 21:30:02 GMT (envelope-from gnats) Date: Thu, 7 Feb 2013 21:30:02 GMT Message-Id: <201302072130.r17LU2hI096913@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org Cc: From: Hans Petter Selasky Subject: Re: usb/175731: detaching USB keyboard freezes other USB keyboards X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Hans Petter Selasky List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2013 21:30:02 -0000 The following reply was made to PR usb/175731; it has been noted by GNATS. From: Hans Petter Selasky To: freebsd-usb@freebsd.org, Norbert Koch Cc: bug-followup@freebsd.org, imp@freebsd.org Subject: Re: usb/175731: detaching USB keyboard freezes other USB keyboards Date: Thu, 7 Feb 2013 22:26:17 +0100 On Thursday 07 February 2013 13:10:01 Norbert Koch wrote: > The following reply was made to PR usb/175731; it has been noted by GNATS. > > From: Norbert Koch > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: usb/175731: detaching USB keyboard freezes other USB keyboards > Date: Thu, 07 Feb 2013 13:01:01 +0100 > > Same problem with FreeBSD-9.1-RELEASE. Hi, In /etc/devd.conf there are a few lines of code: # When a USB keyboard arrives, attach it as the console keyboard. attach 100 { device-name "ukbd0"; action "/etc/rc.d/syscons setkeyboard /dev/ukbd0"; }; detach 100 { device-name "ukbd0"; action "/etc/rc.d/syscons setkeyboard /dev/kbd0"; }; Can you try to uncomment these? Then restart devd or reboot and try again and see what happens. I believe the devd.conf lines above should be removed. --HPS