summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2011-10-03 23:46:17 -0400
committerTheodore Ts'o <tytso@mit.edu>2011-10-03 23:46:17 -0400
commit466137fb7eaf6d54aa8d174054ed17eaed52eac8 (patch)
treeb54b1cf8ebd29068093df5944467e4d63e5e226c
parentaff534958b0888035876aab12b8f2267c15e734e (diff)
downloade2fsprogs-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.conf6
-rw-r--r--misc/mke2fs.conf6
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
}