Skip to content

Commit

Permalink
Merge pull request #939 from flatcar/scripts
Browse files Browse the repository at this point in the history
Switch default ext4 inode size to 256 bytes
  • Loading branch information
jepio committed Jun 22, 2023
2 parents 78bb5ba + 6c71980 commit f60a070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build_library/disk_util
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def FormatExt(part, device):
'-t', part['fs_type'],
'-b', 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,
part['fs_blocks']])

Expand Down
1 change: 1 addition & 0 deletions changelog/changes/2023-06-22-ext4-inode-size.md
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit f60a070

Please sign in to comment.