浏览代码

fs/ext2: default to ext2 rev1

Rev0 is very old (E.G. from before Linux was maintained in git), the kernel
prints a scary warning when used:

EXT4-fs warning (device sda): ext4_update_dynamic_rev:746: updating to rev 1
because of new feature flag, running e2fsck is recommended

And rev0 support is broken in u-boot 2016.11:
http://lists.denx.de/pipermail/u-boot/2016-December/275916.html

So default to rev1 instead.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 7 年之前
父节点
当前提交
219d0b5db2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fs/ext2/Config.in

+ 1 - 1
fs/ext2/Config.in

@@ -11,7 +11,7 @@ config BR2_TARGET_ROOTFS_EXT2_2
 
 choice
 	bool "ext2/3/4 variant"
-	default BR2_TARGET_ROOTFS_EXT2_2r0
+	default BR2_TARGET_ROOTFS_EXT2_2r1
 
 config BR2_TARGET_ROOTFS_EXT2_2r0
 	bool "ext2 (rev0)"