From aa87bae5fc11a857c9dc7793fc4a932cc860e94a Mon Sep 17 00:00:00 2001 From: jim-p Date: Mon, 31 Mar 2014 10:40:20 -0400 Subject: 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. --- etc/rc | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'etc') diff --git a/etc/rc b/etc/rc index 045c707..7dc442c 100755 --- a/etc/rc +++ b/etc/rc @@ -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..." -- cgit v1.1