Date: Thu, 24 Aug 2000 10:29:03 -0700 From: Jos Backus <josb@corp.webtv.net> To: current@freebsd.org Subject: devfs, moused and rc.devfs position in rc Message-ID: <20000824102903.A2492@traitor.artemis.com>
next in thread | raw e-mail | index | archive | help
In /etc/rc, rc.i386 is invoked before rc.devfs. This causes moused to fail to
start for those people who use a link from /dev/<mousedev> to /dev/mouse. The
fix seems to be to switch the order of invocation:
# Run rc.devfs if readable to customize devfs
#
if [ -r /etc/rc.devfs ]; then
sh /etc/rc.devfs
fi
# Configure implementation specific stuff
#
arch=`uname -m`
if [ -r /etc/rc.${arch} ]; then
. /etc/rc.${arch}
fi
Hth,
--
Jos Backus <josb@corp.webtv.net>
WebTV Networks, Inc., Mountain View, CA
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000824102903.A2492>
