diff options
author | gjb <gjb@FreeBSD.org> | 2015-06-01 21:10:47 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2015-06-01 21:10:47 +0000 |
commit | 7447f1a3e1e0047f26f2ab5927c83e2db10ca76e (patch) | |
tree | 172b9fe6fd1626de1bd3cc82faca3714794e7ce5 | |
parent | e961ac3d2eb3e4b8cde364786f9c4855a8f57ab8 (diff) | |
download | FreeBSD-src-7447f1a3e1e0047f26f2ab5927c83e2db10ca76e.zip FreeBSD-src-7447f1a3e1e0047f26f2ab5927c83e2db10ca76e.tar.gz |
In arm_create_disk(), disable soft updates journaling.
Disabling soft updates journaling appears to resolve issues
with kernel panics, and may also be generally bad to have
enabled for SD cards.
Requested by: ian
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | release/tools/arm.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/tools/arm.subr b/release/tools/arm.subr index 6cab3c4..4049c4d 100644 --- a/release/tools/arm.subr +++ b/release/tools/arm.subr @@ -72,7 +72,7 @@ arm_create_disk() { chroot ${CHROOTDIR} gpart create -s bsd ${mddev}s2 chroot ${CHROOTDIR} gpart add -t freebsd-ufs -a 64k /dev/${mddev}s2 chroot ${CHROOTDIR} newfs -U -L rootfs /dev/${mddev}s2a - chroot ${CHROOTDIR} tunefs -j enable -N enable /dev/${mddev}s2a + chroot ${CHROOTDIR} tunefs -N enable /dev/${mddev}s2a return 0 } |