From: Theodore Ts'o Date: Tue, 4 Oct 2011 03:46:17 +0000 (-0400) Subject: Add "big" and "huge" types to mke2fs.conf X-Git-Tag: v1.42-WIP-1005~16 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=466137fb7eaf6d54aa8d174054ed17eaed52eac8;p=tools%2Fe2fsprogs.git Add "big" and "huge" types to mke2fs.conf 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" --- diff --git a/misc/mke2fs-hurd.conf b/misc/mke2fs-hurd.conf index 52ed7e5..4f0527d 100644 --- a/misc/mke2fs-hurd.conf +++ b/misc/mke2fs-hurd.conf @@ -21,6 +21,12 @@ floppy = { inode_ratio = 8192 } + big = { + inode_ratio = 32768 + } + huge = { + inode_ratio = 65536 + } news = { inode_ratio = 4096 } diff --git a/misc/mke2fs.conf b/misc/mke2fs.conf index 775e046..0871f77 100644 --- a/misc/mke2fs.conf +++ b/misc/mke2fs.conf @@ -30,6 +30,12 @@ inode_size = 128 inode_ratio = 8192 } + big = { + inode_ratio = 32768 + } + huge = { + inode_ratio = 65536 + } news = { inode_ratio = 4096 }