From: Jordan Woyak Date: Tue, 26 Mar 2024 01:56:06 +0000 (-0500) Subject: config: Enable ext4 journaling by default. X-Git-Tag: v24.10.0-rc1~2460 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14977%2Fhead;p=thirdparty%2Fopenwrt.git config: Enable ext4 journaling by default. Not having a journal by default is a major "gotcha". Because openwrt does not fsck on boot, a power loss without journaling can result in a dirty filesystem that openwrt will mount as read-only which requires intervention to restore the router to working order. Signed-off-by: Jordan Woyak --- diff --git a/config/Config-images.in b/config/Config-images.in index c2d7af7a80b..6f2f9264323 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -127,6 +127,7 @@ menu "Target Images" config TARGET_EXT4_JOURNAL bool "Create a journaling filesystem" depends on TARGET_ROOTFS_EXT4FS + default y help Create an ext4 filesystem with a journal.