Skip to main content

Posts

Showing posts from 2012

How to make your w8 phone as multi touch

in order to do that first you must have to download the ax8mt.ko file http://www.mediafire.com/?ox2h7e3o8pphamf then copy it to the sd card then first you must have to do these steps as in the tutorial in the video How to get multitouch W8 1) Copy ax8mt.ko to sdcard 2) Open the root explorer 3) Go to sdcard and then move ax8mt.ko to system/lib/modules 4) Before your paste make sure your tap Mount/Ro and then paste 5) Quit root explorer 6) Open Terminal Emulator 7) Type su 8) Type insmod /system/lib/modules/ax8mt.ko 9) Type dmesg http://www.youtube.com/watch?v=5uVacgObdOk but when you restart the phone it wont work so everytime you switch it on you must have to do this so i found a solution by myself of writing a code inside the OS first of all ope the terminal an type ls and find where you in ? then use 1.type su        // super mode to enter 2.type cd /etc/init.d      // this will direct you to the location of the sy...

Android: Howto autoload a kernel module

On my phone, I have a tun module for openvpn that i would like to autoload on boot. As it took me a while to figure out how to do this, here is how it works: su cd /etc/init.d ## pwd will show you that you are in ## /system/etc/init.d!!! That's what confused me. mount -o remount,rw /system vi 99tunmodule The content of the file /system/etc/init.d with the right path to your tun.ko file: insmod /system/lib/modules/tun.ko After this execute chown root:shell 99tunmodule chmod 750 99tunmodule mount -o remount,ro /system Reboot your phone and execute lsmod to see the tun module!