diff options
author | Ed Maste <emaste@FreeBSD.org> | 2018-01-12 20:25:57 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2018-01-12 20:25:57 +0000 |
commit | 643139e5b157f0fc0663076ef9d06bc1bd9a3b96 (patch) | |
tree | 238dc88e4c3a4446506239e05b73cff954e505c4 /usr.sbin/bsdinstall/partedit | |
parent | 982fabe12e6e5c5b4074505fb4fbc110fbacbd43 (diff) |
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 <arshankhanifar gmail.com>
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D13890
Notes
Notes:
svn path=/head/; revision=327890
Diffstat (limited to 'usr.sbin/bsdinstall/partedit')
-rw-r--r-- | usr.sbin/bsdinstall/partedit/gpart_ops.c | 3 |
1 files changed, 1 insertions, 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 }, |