OK Guys got solution in this thread:
http://forum.xda-developers.com/show...0#post27092900
Copy mmcfix.ko & symsearch.ko in /system/lib/modules and change the permissions to rw r r for both files.
Modify load_modules.sh as mentioned below and set permission as rwx r-x r-x
So just add the following lines in load_modules.sh files of /system/bin so it looks like this:
#!/system/bin/sh
export PATH=/system/bin:$PATH
# Install GAN virtual interface kernel module
if [ -e /system/lib/modules/kineto_gan.ko ]; then
insmod /system/lib/modules/kineto_gan.ko
insmod /system/lib/modules/symsearch.ko
insmod /system/lib/modules/mmcfix.ko
fi
Enjoy !!
|