Blame SOURCES/e2fsprogs-1.45.6-mke2fs.conf-Introduce-rhel6-and-rhel7-fs_type.patch
|
|
24fd99 |
From 42e4b2148a42ce35d5bc86586341a887928ec4dc Mon Sep 17 00:00:00 2001
|
|
|
24fd99 |
From: Lukas Czerner <lczerner@redhat.com>
|
|
|
24fd99 |
Date: Tue, 17 Dec 2019 11:24:31 +0100
|
|
|
24fd99 |
Subject: [PATCH 3/7] mke2fs.conf: Introduce rhel6 and rhel7 fs_type
|
|
|
24fd99 |
|
|
|
24fd99 |
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
|
|
|
24fd99 |
---
|
|
|
24fd99 |
misc/mke2fs.conf.in | 10 ++++++++++
|
|
|
24fd99 |
1 file changed, 10 insertions(+)
|
|
|
24fd99 |
|
|
|
24fd99 |
diff --git a/misc/mke2fs.conf.in b/misc/mke2fs.conf.in
|
|
|
24fd99 |
index 01e35cf8..a533b210 100644
|
|
|
24fd99 |
--- a/misc/mke2fs.conf.in
|
|
|
24fd99 |
+++ b/misc/mke2fs.conf.in
|
|
|
24fd99 |
@@ -14,6 +14,16 @@
|
|
|
24fd99 |
features = has_journal,extent,huge_file,flex_bg,metadata_csum,64bit,dir_nlink,extra_isize
|
|
|
24fd99 |
inode_size = 256
|
|
|
24fd99 |
}
|
|
|
24fd99 |
+ rhel6_ext4 = {
|
|
|
24fd99 |
+ features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize
|
|
|
24fd99 |
+ inode_size = 256
|
|
|
24fd99 |
+ enable_periodic_fsck = 1
|
|
|
24fd99 |
+ default_mntopts = ""
|
|
|
24fd99 |
+ }
|
|
|
24fd99 |
+ rhel7_ext4 = {
|
|
|
24fd99 |
+ features = has_journal,extent,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize,64bit
|
|
|
24fd99 |
+ inode_size = 256
|
|
|
24fd99 |
+ }
|
|
|
24fd99 |
small = {
|
|
|
24fd99 |
blocksize = 1024
|
|
|
24fd99 |
inode_size = 128
|
|
|
24fd99 |
--
|
|
|
24fd99 |
2.21.3
|
|
|
24fd99 |
|