mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-27 03:54:19 +08:00
466137fb7e
mke2fs attempts to use the "big" and "huge" types, and now that mke2fs will complain if there are file system types which are undefined, let's add definitions for them. Thanks to Richard Jones for reporting this problem. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
43 lines
707 B
Plaintext
43 lines
707 B
Plaintext
[defaults]
|
|
base_features = sparse_super,filetype,resize_inode,dir_index,ext_attr
|
|
default_mntopts = acl,user_xattr
|
|
enable_periodic_fsck = 0
|
|
blocksize = 4096
|
|
inode_size = 128
|
|
inode_ratio = 16384
|
|
|
|
[fs_types]
|
|
ext3 = {
|
|
features = has_journal
|
|
}
|
|
ext4 = {
|
|
features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize
|
|
auto_64-bit_support = 1
|
|
inode_size = 256
|
|
}
|
|
small = {
|
|
inode_ratio = 4096
|
|
}
|
|
floppy = {
|
|
inode_ratio = 8192
|
|
}
|
|
big = {
|
|
inode_ratio = 32768
|
|
}
|
|
huge = {
|
|
inode_ratio = 65536
|
|
}
|
|
news = {
|
|
inode_ratio = 4096
|
|
}
|
|
largefile = {
|
|
inode_ratio = 1048576
|
|
}
|
|
largefile4 = {
|
|
inode_ratio = 4194304
|
|
}
|
|
hurd = {
|
|
blocksize = 4096
|
|
inode_size = 128
|
|
}
|