#!/system/bin/sh #Checks for a swap partition on mount 3 of the SD card and use it for swap partition. if [ -b /dev/block/mmcblk0p3 ]; then #Uncomment the line below to adjust swappiness. Default is 60 I believe # echo 20 > /proc/sys/vm/swappiness; swapon /dev/block/mmcblk0p3; fi;