From 2935dff0ce545a2bf7e1544bc6925325466ef288 Mon Sep 17 00:00:00 2001 From: voidanix <46201805+voidanix@users.noreply.github.com> Date: Thu, 27 Dec 2018 21:12:52 +0100 Subject: [PATCH] Allow GRUB to get installed on XFS roots --- installer.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.sh.in b/installer.sh.in index 873c4bf..1fa366f 100644 --- a/installer.sh.in +++ b/installer.sh.in @@ -1033,7 +1033,7 @@ failed to activate swap on $dev!\ncheck $LOG for errors." ${MSGBOXSIZE} ext4) MKFS="mke2fs -F -t ext4"; modprobe ext4 >$LOG 2>&1;; f2fs) MKFS="mkfs.f2fs"; modprobe f2fs >$LOG 2>&1;; vfat) MKFS="mkfs.vfat -F32"; modprobe vfat >$LOG 2>&1;; - xfs) MKFS="mkfs.xfs -f"; modprobe xfs >$LOG 2>&1;; + xfs) MKFS="mkfs.xfs -f -i sparse=0"; modprobe xfs >$LOG 2>&1;; esac TITLE="Check $LOG for details ..." INFOBOX "Creating filesystem $fstype on $dev for $mntpt ..." 8 60