Upload etc/mke2fs.conf with huggingface_hub
Browse files- etc/mke2fs.conf +48 -0
etc/mke2fs.conf
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[defaults]
|
2 |
+
base_features = sparse_super,large_file,filetype,resize_inode,dir_index,ext_attr
|
3 |
+
default_mntopts = acl,user_xattr
|
4 |
+
enable_periodic_fsck = 0
|
5 |
+
blocksize = 4096
|
6 |
+
inode_size = 256
|
7 |
+
inode_ratio = 16384
|
8 |
+
|
9 |
+
[fs_types]
|
10 |
+
ext3 = {
|
11 |
+
features = has_journal
|
12 |
+
}
|
13 |
+
ext4 = {
|
14 |
+
features = has_journal,extent,huge_file,flex_bg,metadata_csum,64bit,dir_nlink,extra_isize
|
15 |
+
inode_size = 256
|
16 |
+
}
|
17 |
+
small = {
|
18 |
+
inode_size = 128
|
19 |
+
inode_ratio = 4096
|
20 |
+
}
|
21 |
+
floppy = {
|
22 |
+
inode_size = 128
|
23 |
+
inode_ratio = 8192
|
24 |
+
}
|
25 |
+
big = {
|
26 |
+
inode_ratio = 32768
|
27 |
+
}
|
28 |
+
huge = {
|
29 |
+
inode_ratio = 65536
|
30 |
+
}
|
31 |
+
news = {
|
32 |
+
inode_ratio = 4096
|
33 |
+
}
|
34 |
+
largefile = {
|
35 |
+
inode_ratio = 1048576
|
36 |
+
blocksize = -1
|
37 |
+
}
|
38 |
+
largefile4 = {
|
39 |
+
inode_ratio = 4194304
|
40 |
+
blocksize = -1
|
41 |
+
}
|
42 |
+
hurd = {
|
43 |
+
blocksize = 4096
|
44 |
+
inode_size = 128
|
45 |
+
}
|
46 |
+
|
47 |
+
[options]
|
48 |
+
fname_encoding = utf8
|