From 643139e5b157f0fc0663076ef9d06bc1bd9a3b96 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 12 Jan 2018 20:25:57 +0000 Subject: [PATCH] bsdinstall: disable SUJ by default SUJ + cg checksums produce spurious warnings after an unclean shutdown (e.g. a crash). For now disable SUJ for UFS installs so installing from a FreeBSD 12 snapshot results in a usable filesystem, until this can be fixed. PR: 225110 Submitted by: Arshan Khanifar Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D13890 --- usr.sbin/bsdinstall/partedit/gpart_ops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.sbin/bsdinstall/partedit/gpart_ops.c b/usr.sbin/bsdinstall/partedit/gpart_ops.c index b2cfef597fd6..4ca359cbda3b 100644 --- a/usr.sbin/bsdinstall/partedit/gpart_ops.c +++ b/usr.sbin/bsdinstall/partedit/gpart_ops.c @@ -91,8 +91,7 @@ newfs_command(const char *fstype, char *command, int use_default) {"SU", "Softupdates", "Enable softupdates (default)", 1 }, {"SUJ", "Softupdates journaling", - "Enable file system journaling (default - " - "turn off for SSDs)", 1 }, + "Enable file system journaling", 0 }, {"TRIM", "Enable SSD TRIM support", "Enable TRIM support, useful on solid-state drives", 0 },