
Originally Posted by
m41d3n
Can someone pleeease give me the link to a SWAP Application thread? I can't find it...
Thanks
You don´t need an application to use a swap on your ming. A simple script can do that.
Script to CREATE the swap file.
Save it as createswap.lin
Run once:
Code:
#!/bin/bash
# Creates a 16MB swap file on memory card
# by Dedraks
dd if=/dev/zero of=/mmc/mmca1/swap.bin bs=1M count=16
busybox mkswap /mmc/mmca1/swap.bin
Script to ACTIVATE the swap file
Save it as enableswap.lin
Run everytime you need
Code:
#!/bin/bash
# Activates the 16MB swap file on memory card
# by Dedraks
swapon /mmc/mmca1/swap.bin