That's what I'm using but he didn't specify what he used to do it so I wanted to make sure what I tried worked. But what is he talking about uncommenting? I never figured that out
I think he means remove his comments if your going to copy and paste his instructions verbatim
#!/system/bin/sh
ln -s /mnt/sdcard /data/sd
sync;
#set cpu max frequency here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
#set cpu min frequency here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
#set cpu governor here (don't forget to uncomment)
#echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
setprop cm.filesystem.ready 1;
setprop dc.filesystem.ready 1;
looks like this when you are done;
!/system/bin/sh
ln -s /mnt/sdcard /data/sd <--DONT NEED THIS
sync;
echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo XX0000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
setprop cm.filesystem.ready 1;
setprop dc.filesystem.ready 1;