Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. extract the zip and copy syntouchpad to root of internal storage
  2.  
  3. adb shell
  4.  
  5. Once shell is connected type
  6. su
  7.  
  8. Remount system rw
  9. mount -o rw,remount /system
  10.  
  11. Rename the previous version
  12. mv /system/bin/syntouchpad /system/bin/syntouchpad.bak
  13.  
  14. copy syntouchpad from internal storage
  15. cp -R /sdcard/syntouchpad /system/bin/syntouchpad
  16.  
  17. Give the binary appropriate permissions
  18. chmod 0755 /system/bin/syntouchpad
  19.  
  20. Wipe previous syntouchpad configuration
  21. rm -rf /data/system/syntouchpad
  22.  
  23. reboot the device
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement