#!/system/bin/sh
su
# ==============================================================
# SDCARD Speedfix
# ==============================================================
if [ -e /sys/devices/virtual/bdi/179:0/read_ahead_kb ]
  then
    /system/xbin/echo "1024" > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
fi;
 ==============================================================
# Do Not Delete! This creates an assurance file
# that script is working.
# ==============================================================
if [ -e /data/JustBeatIt ]; then
	rm /data/JustBeatIt;
fi;
echo -n "LTGB SCRIPT LAST RUN: $( date +"%m-%d-%Y %H:%M:%S" )" > /data/JustBeatIt