So by now you might've stumbled upon the the excellent ReRoot script from Eldon McGuinness
Among other things it enables cron.d and init.d script execution.
To make full use of these features, why not collect examples in a thread?
I found this extensive list on xda: http://forum.xda-developers.com/show....php?t=1227269
Some seem to be eligible candidates for the ouya (haven't tried them though)
Init.d
2. internet speed tweaks
Code:
Code:
echo "0" > /proc/sys/net/ipv4/tcp_timestamps;
echo "1" > /proc/sys/net/ipv4/tcp_tw_reuse;
echo "1" > /proc/sys/net/ipv4/tcp_sack;
echo "1" > /proc/sys/net/ipv4/tcp_tw_recycle;
echo "1" > /proc/sys/net/ipv4/tcp_window_scaling;
echo "5" > /proc/sys/net/ipv4/tcp_keepalive_probes;
echo "30" > /proc/sys/net/ipv4/tcp_keepalive_intvl;
echo "30" > /proc/sys/net/ipv4/tcp_fin_timeout;
echo "404480" > /proc/sys/net/core/wmem_max;
echo "404480" > /proc/sys/net/core/rmem_max;
echo "256960" > /proc/sys/net/core/rmem_default;
echo "256960" > /proc/sys/net/core/wmem_default;
echo "4096,16384,404480" > /proc/sys/net/ipv4/tcp_wmem;
echo "4096,87380,404480" > /proc/sys/net/ipv4/tcp_rmem;
9. Defrags database files
Code:
Code:
for i in \
`find /data -iname "*.db"`
do \
sqlite3 $i 'VACUUM;';
done
Also build.prop scripts:
1. Force launcher into memory
Code:
3. VM Heapsize; higher the RAM, higher the hp can be
Code:
Code:
dalvik.vm.heapsize=48m
4. Render UI with GPU
Code:
12. Net speed tweaks
Code:
Code:
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
Has anyone tried any of these or any other scripts they might want to share?
Bookmarks