From owner-freebsd-current@FreeBSD.ORG Mon Feb 11 12:42:26 2013 Return-Path: Delivered-To: freebsd-current@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 628288A5 for ; Mon, 11 Feb 2013 12:42:26 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id F3D1866D for ; Mon, 11 Feb 2013 12:42:25 +0000 (UTC) X-T2-Spam-Status: No, hits=-0.2 required=5.0 tests=ALL_TRUSTED, BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 377901733 for freebsd-current@freebsd.org; Mon, 11 Feb 2013 13:42:17 +0100 From: Hans Petter Selasky To: freebsd-current@freebsd.org Subject: [RFC] USB keyboard and devd.conf Date: Mon, 11 Feb 2013 13:43:29 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) X-Face: ?p&W)c(+80hU; '{.$5K+zq{oC6y| /D'an*6mw>j'f:eBsex\Gi, X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Feb 2013 12:42:26 -0000 Hi, Does anyone need these lines in /etc/devd.conf ? === etc/devd.conf ================================================================== --- etc/devd.conf (revision 246620) +++ etc/devd.conf (local) @@ -105,16 +105,6 @@ # action "sleep 2 && /usr/sbin/ath3kfw -d $device-name -f /usr/local/etc/ath3k-1.fw"; #}; -# 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"; -}; - notify 100 { match "system" "DEVFS"; match "subsystem" "CDEV"; I plan to remove the lines marked with minus, because we now have kbdmux. --HPS