From f8ff2333bb12663107dfaf49e17dd2b2fdf31188 Mon Sep 17 00:00:00 2001 From: Christoph Hummer Date: Tue, 30 Apr 2024 07:55:28 +0200 Subject: [PATCH] Update rc.S - remove wsync from XFS mount to prevent WebGUI from freezing during heavy I/O on /boot --- etc/rc.d/rc.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.d/rc.S b/etc/rc.d/rc.S index 731361a6c..f5d10dc8f 100755 --- a/etc/rc.d/rc.S +++ b/etc/rc.d/rc.S @@ -100,7 +100,7 @@ if /sbin/blkid -s TYPE $DEVICE | /bin/grep -q "btrfs" ; then /sbin/mount -v -t btrfs -o auto,rw,noatime,nodiratime,degraded,discard=sync $DEVICE /boot || abort "cannot mount $DEVICE" elif /sbin/blkid -s TYPE $DEVICE | /bin/grep -q "xfs" ; then NONVFAT=xfs - /sbin/mount -v -t xfs -o auto,rw,noatime,nodiratime,discard,wsync $DEVICE /boot || abort "cannot mount $DEVICE" + /sbin/mount -v -t xfs -o auto,rw,noatime,nodiratime,discard $DEVICE /boot || abort "cannot mount $DEVICE" else /bin/echo "Checking $DEVICE ..." /sbin/fsck.fat -a -w $DEVICE 2>/dev/null