Shorten sleep time during init. This really needs to be replaced with

proper udev hooks, but this is a quick interim fix.
This commit is contained in:
Dave Jones 2009-06-25 23:35:01 +00:00
parent 810a922946
commit e95cb1cb90
2 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function start ()
while [ ! -c $DEVICE ]; do
lt=$[lt+1];
[ $lt -gt 5 ] && break;
sleep 1;
sleep 0.1;
done
# Lets just be sure we have a device file...

View File

@ -78,6 +78,11 @@ family=`cat /proc/cpuinfo | grep "^cpu family" | sort -u | awk -F ": " '{ print
exit 0
%changelog
* Thu Jun 25 2009 Dave Jones <davej@redhat.com>
- Shorten sleep time during init.
This really needs to be replaced with proper udev hooks, but this is
a quick interim fix.
* Wed Jun 03 2009 Kyle McMartin <kyle@redhat.com> 1:1.17-1.50
- Change ExclusiveArch to i586 instead of i386. Resolves rhbz#497711.