mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-12 15:36:58 +02:00
Merge pull request #939 from flatcar/ext4-inode-size
Switch default ext4 inode size to 256 bytes
This commit is contained in:
commit
3613a60ffc
@ -403,7 +403,7 @@ def FormatExt(part, device):
|
|||||||
'-t', part['fs_type'],
|
'-t', part['fs_type'],
|
||||||
'-b', part['fs_block_size'],
|
'-b', part['fs_block_size'],
|
||||||
'-i', part.get('fs_bytes_per_inode', part['fs_block_size']),
|
'-i', part.get('fs_bytes_per_inode', part['fs_block_size']),
|
||||||
'-I', part.get('fs_inode_size', 128),
|
'-I', part.get('fs_inode_size', 256),
|
||||||
device,
|
device,
|
||||||
part['fs_blocks']])
|
part['fs_blocks']])
|
||||||
|
|
||||||
|
1
changelog/changes/2023-06-22-ext4-inode-size.md
Normal file
1
changelog/changes/2023-06-22-ext4-inode-size.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
- Changed ext4 inode size of root partition to 256 bytes. This improves compatibility with applications and is necessary for 2038 readiness ([Flatcar#1082](https://github.com/flatcar/Flatcar/issues/1082))
|
Loading…
Reference in New Issue
Block a user