Hey guys, I’m curious if you would be interested in adding the “casefold” feature in new installs using EXT4 (or make it a toggle-able option?). This is a feature which allows a user to make specific directories case-insensitive like Windows, improving compatibility when installing mods for games and overwriting files. The reason I ask is because it is necessary to include the feature when making the filesystem, you cannot add it later. So if you want it on your root filesystem you have to re-install EOS. Enabling this feature does not change anything itself, it just gives you the option the to run the command in the future if you want.
See this guide for more info: https://www.collabora.com/news-and-blog/blog/2020/08/27/using-the-linux-kernel-case-insensitive-feature-in-ext4/
“To enable the feature, it takes two steps: one is to enable the filesystem-wide casefold feature on the volume’s superblock. This doesn’t immediately make any directories case-insensitive, so don’t worry, but it prepares the disk to support casefolded directories. It also configures what encoding will be used.”
If not, I’m curious how I would go about doing this myself on a clean install (not that I’m planning on one soon lol). Would it just be adding this mkfs -t ext4 -O casefold
to the calamares options somewhere?