mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Make moused actually work:
add sleep 20 before moused starts. It allows all getties to activate screens.
This commit is contained in:
parent
47a5bd3f21
commit
87dc1283f8
2 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.15 1996/01/31 15:02:54 mpp Exp $
|
||||
# $Id: rc.i386,v 1.16 1996/06/23 20:54:42 ache Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ fi
|
|||
# mouse daemon
|
||||
if [ "X${mousedtype}" != XNO ] ; then
|
||||
echo -n ' moused'
|
||||
moused ${mousedflags} -p ${mousedport} -t ${mousedtype}
|
||||
(sleep 20; moused ${mousedflags} -p ${mousedport} -t ${mousedtype}) &
|
||||
fi
|
||||
|
||||
echo '.'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.15 1996/01/31 15:02:54 mpp Exp $
|
||||
# $Id: rc.i386,v 1.16 1996/06/23 20:54:42 ache Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ fi
|
|||
# mouse daemon
|
||||
if [ "X${mousedtype}" != XNO ] ; then
|
||||
echo -n ' moused'
|
||||
moused ${mousedflags} -p ${mousedport} -t ${mousedtype}
|
||||
(sleep 20; moused ${mousedflags} -p ${mousedport} -t ${mousedtype}) &
|
||||
fi
|
||||
|
||||
echo '.'
|
||||
|
|
|
|||
Loading…
Reference in a new issue