From 466137fb7eaf6d54aa8d174054ed17eaed52eac8 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 3 Oct 2011 23:46:17 -0400 Subject: [PATCH] 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" --- misc/mke2fs-hurd.conf | 6 ++++++ misc/mke2fs.conf | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/misc/mke2fs-hurd.conf b/misc/mke2fs-hurd.conf index 52ed7e50..4f0527df 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 775e0462..0871f777 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 }