[PC-BSD Commits] r20257 - pcbsd/branches/9.1/overlays/desktop-overlay/etc
svn at pcbsd.org
svn at pcbsd.org
Mon Nov 19 14:34:50 PST 2012
Author: kris
Date: 2012-11-19 22:34:50 +0000 (Mon, 19 Nov 2012)
New Revision: 20257
Modified:
pcbsd/branches/9.1/overlays/desktop-overlay/etc/rc
Log:
MFC moused fix to add USB mice right away
Modified: pcbsd/branches/9.1/overlays/desktop-overlay/etc/rc
===================================================================
--- pcbsd/branches/9.1/overlays/desktop-overlay/etc/rc 2012-11-19 22:34:15 UTC (rev 20256)
+++ pcbsd/branches/9.1/overlays/desktop-overlay/etc/rc 2012-11-19 22:34:50 UTC (rev 20257)
@@ -111,6 +111,15 @@
run_rc_script ${i} ${_boot}
done
+ # Check for USB mouse to start
+ mChk="ums0 ums1"
+ for i in $mChk
+ do
+ if [ -e "/dev/$i" ] ; then
+ /etc/rc.d/moused start $i
+ fi
+ done
+
# Start the delayed services after the login is up
(sleep 5; nice /bin/sh /etc/rc.delay "$_rc_elem_done$preLoad")&
else
More information about the Commits
mailing list