|
2007-11-11
, 01:50
|
Posts: 398 |
Thanked: 301 times |
Joined on Sep 2007
@ Texas
|
#32
|
|
2007-11-11
, 13:48
|
Posts: 72 |
Thanked: 8 times |
Joined on Oct 2006
|
#33
|
[..]
If you want to make this permanent, you can create a script to do this on boot.
/etc/init.d/wlan-fix contains
#! /bin/sh
#
if [ -x /usr/local/bin/cx3110x-on-stack.ko ]
then
rmmod cx3110x
insmod /usr/local/bin/cx3110x-on-stack.ko
chroot /mnt/initfs wlan-cal
fi
Then create a link in /etc/rc2.d/S80wlanfix to /etc/init.d/wlan-fix
In /etc/rc2.d/ ln -s S80wlanfix ../init.d/wlan-fix
Hope this helps.
Frank
|
2007-11-11
, 14:20
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#34
|
The Following User Says Thank You to fanoush For This Useful Post: | ||
|
2007-11-11
, 16:49
|
Posts: 72 |
Thanked: 8 times |
Joined on Oct 2006
|
#35
|
the 'ln' line is wrong, swap arguments, it is 'ln -s original newlink'
also it is better to use -f in the test, -x is true only if the file has x bit set which may not be true for kernel module file (depends on how you downloaded/copied it to the device)
|
2007-11-11
, 20:32
|
Posts: 18 |
Thanked: 0 times |
Joined on Oct 2007
|
#36
|
|
2007-11-11
, 21:27
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#37
|
Is there a WLAN driver bug thread on itt? I searched but didn't find one.
Should I wait for an official bug fix announcement before installing the WLAN driver patch?
|
2008-08-06
, 07:56
|
Posts: 28 |
Thanked: 1 time |
Joined on Jul 2008
|
#38
|
|
2008-08-06
, 11:57
|
|
Posts: 566 |
Thanked: 145 times |
Joined on Feb 2008
@ Tallahassee, FL
|
#39
|
Thanks
Ray