diff options
| author | Jordan Woyak | 2024-03-26 01:56:06 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-08 19:13:27 +0000 |
| commit | 7448f7a2d56f0d7d868fb89899df5528ab69db41 (patch) | |
| tree | 52e1ab5fbea4829bc0561266a5a93d5ad6485040 | |
| parent | 7d135dc038b0986522c68545d648fcb6a3fb1874 (diff) | |
| download | openwrt-7448f7a2d56f0d7d868fb89899df5528ab69db41.tar.gz | |
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 <jordan.woyak@gmail.com>
(cherry picked from commit f9f2426e398cf74d1098ae40317bfba677ac7560)
Link: https://github.com/openwrt/openwrt/pull/15898
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | config/Config-images.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/Config-images.in b/config/Config-images.in index ea7b3d37c3..c32fa00c5f 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. |