From owner-freebsd-bugs@FreeBSD.ORG Sat Sep 18 21:30:26 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 697BE16A4CE for ; Sat, 18 Sep 2004 21:30:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C7C743D1F for ; Sat, 18 Sep 2004 21:30:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i8ILUQ2A064953 for ; Sat, 18 Sep 2004 21:30:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i8ILUQFE064952; Sat, 18 Sep 2004 21:30:26 GMT (envelope-from gnats) Date: Sat, 18 Sep 2004 21:30:26 GMT Message-Id: <200409182130.i8ILUQFE064952@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Brooks Davis Subject: Re: kern/71887: Loosing keyboard after plugging a bluetooth usb dongle X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Brooks Davis List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2004 21:30:26 -0000 The following reply was made to PR kern/71887; it has been noted by GNATS. From: Brooks Davis To: Silvere THOMMEREL Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/71887: Loosing keyboard after plugging a bluetooth usb dongle Date: Sat, 18 Sep 2004 14:27:12 -0700 Please try commenting out the following lines in your devd.conf. Currently we only support one keyboard at a time and this entry switches to a USB keyboard if you add one. The panic sounds like a usb or bluetooth bug. # When a USB keyboard arrives, attach it as the console keyboard attach 100 { device-name "ukbd0"; action "test -c /dev/kbd1 && kbdcontrol -k /dev/kbd1 < /dev/console"; }; detach 100 { device-name "ukbd0"; action "kbdcontrol -k /dev/kbd0 < /dev/console"; }; -- Brooks