It's cool, you just need to be familiar with getting access
ok, here's what you're going to do for your particular situation,
*this means for Slayer72, if you copy this and you're not Slayer72, and it messes things up for you, it's your own damn fault*
first, go into the koumamod menu and make sure internal /data is disabled.
next, reboot
ok, once booted, open a command prompt window where your adb tool is (not sure if your qtADB does this next step, probably does, but I don't know the tool)
run> adb remount
if qtADB does that, use whatever method it does for that
next, here's a list of adb shell commands, starting with launching the shell:
run> adb shell
run> mkdir /system/swap
run> mount /dev/stl13 /system/swap
run> rm -rf /system/swap/*
run> dd if=/dev/zero of=/system/swap/swapfile
run> mkswap /system/swap/swapfile
now, open a unix mode text editor (like notepad++)
copy and paste the following into it:
Code:
#!/system/bin/sh
mount /dev/stl13 /system/swap
swapon /system/swap/swapfile
echo 60 > /proc/sys/vm/swappiness
save the file as something like S90KoumaSwap
put it on your phone in /etc/init.d
the command line prompt would be:
adb push S90KoumaSwap /etc/init.d/S90KoumaSwap
then, in your adb shell:
run> chmod 777 /etc/init.d/S90KoumaSwap
and reboot one last time.