Remove TRIM_set and TRIM_unset support. This method isn't very elegant and isn't necessary in the long run. It's better handled in the installer stage and not after the fact.

This commit is contained in:
jim-p 2014-03-31 10:40:20 -04:00
parent 02b29d72f9
commit aa87bae5fc
1 changed files with 0 additions and 23 deletions

23
etc/rc
View File

@ -39,29 +39,6 @@ if [ -e /root/force_fsck ]; then
fi
fi
if [ -e /root/TRIM_set -o -e /root/TRIM_unset ]; then
TUNEFS_STATUS=`/sbin/tunefs -p / 2>&1 | /usr/bin/grep trim: | /usr/bin/awk '{print $4;}'`
if [ -e /root/TRIM_set ] && [ "${TUNEFS_STATUS}" = "disabled" ]; then
echo "Enabling TRIM support"
/sbin/tunefs -t enable /
if [ "$PLATFORM" = "nanobsd" ]; then
/sbin/tunefs -t enable /cf
fi
echo "Rebooting in 5 seconds after enabling TRIM..."
sleep 5
/sbin/reboot
elif [ -e /root/TRIM_unset ] && [ "${TUNEFS_STATUS}" = "enabled" ]; then
echo "Disabling TRIM support"
/sbin/tunefs -t disable /
if [ "$PLATFORM" = "nanobsd" ]; then
/sbin/tunefs -t disable /cf
fi
echo "Rebooting in 5 seconds after disabling TRIM..."
sleep 5
/sbin/reboot
fi
fi
# Mount memory file system if it exists
echo "Mounting filesystems..."