chris41g

19-setprops

Oct 7th, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.28 KB | None | 0 0
  1. #!/system/bin/sh
  2. ## Copyright (C) 2011 Free Software Foundation, Inc.
  3. ## This program is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU Library General Public License as published
  5. # by the Free Software Foundation; either version 2, or (at your option)
  6. # any later version.
  7. ## This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. ## You should have received a copy of the GNU Library General Public
  12. # License along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. # USA.
  15. ## License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>
  16. log -p i -t init:setprop "INIT.setprop BEGIN:setting OS tuning properties"
  17. setprop dalvik.vm.startheapsize 8m;
  18. setprop wifi.supplicant_scan_interval 240;
  19. setprop windowsmgr.max_events_per_sec 60;
  20. setprop net.cdma.rtsp.proxy.addr 0.0.0.0
  21. setprop net.cdma.rtsp.proxy.port 0
  22. setprop net.cdma.httppd.proxy.addr 0.0.0.0
  23. setprop net.cdma.httppd.proxy.port 0
  24. log -p i -t init:setprop "INIT.setprop END:setting OS tuning properties"
Advertisement
Add Comment
Please, Sign In to add comment