|
|

楼主 |
发表于 2007-5-21 14:08:38
|
显示全部楼层
Post by Blahster
google 一下,只找到这个
[quote]
Ok, I solved this!
First, the error has always existed. The changes to udev to make it work with a silent fbsplash simply made udev a little *too* verbose in printing errors to console. The solution is to modify /etc/modules.d/ipw3945d to not print any errors and return a successful exit code.
Here's the modified file (I'll make a bugzilla bug on it shortly):
/etc/modules.d/ipw3945d:
install ipw3945 /sbin/modprobe --ignore-install ipw3945; sleep 0.5; /etc/init.d/ipw3945d start > /dev/null; exit 0
remove ipw3945 /etc/init.d/ipw3945d stop > /dev/null; /sbin/modprobe -r --ignore-remove ipw3945
The drawback is now that we won't know if it fails or succeeds when running manually, but it should almost never *be* run manually (i.e. modprobe ipw3945 or modprobe -r ipw3945).
[\quote]
这个只是屏蔽的错误,呵呵 那我直接把/etc/init.d/ipw3945d start这个去掉,然后再手工启动 |
|