Advertisement
Guest User

Frandom enable

a guest
Feb 28th, 2014
1,139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #!/system/bin/sh
  2.  
  3. if [ -e /dev/frandom ]; then
  4. chmod 644 /dev/frandom
  5. mv /dev/random /dev/random.ori
  6. mv /dev/urandom /dev/urandom.ori
  7. ln /dev/frandom /dev/random
  8. chmod 644 /dev/random
  9. ln /dev/frandom /dev/urandom
  10. chmod 644 /dev/urandom
  11. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement