diff options
author | Theodore Ts'o <tytso@mit.edu> | 2011-10-03 23:46:17 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-10-03 23:46:17 -0400 |
commit | 466137fb7eaf6d54aa8d174054ed17eaed52eac8 (patch) | |
tree | b54b1cf8ebd29068093df5944467e4d63e5e226c | |
parent | aff534958b0888035876aab12b8f2267c15e734e (diff) | |
download | e2fsprogs-466137fb7eaf6d54aa8d174054ed17eaed52eac8.tar.gz |
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" <tytso@mit.edu>
-rw-r--r-- | misc/mke2fs-hurd.conf | 6 | ||||
-rw-r--r-- | misc/mke2fs.conf | 6 |
2 files changed, 12 insertions, 0 deletions
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 } |