linux: Enable ext4 support

This commit is contained in:
Mikael 2024-09-16 21:00:43 +02:00
parent 64c7fae974
commit 6d8e13abfe
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0
3 changed files with 4 additions and 6 deletions

View file

@ -189,9 +189,6 @@ imports = [
INTEL_RAPL = true;
EXT4_FS = true;
EXT4_USE_FOR_EXT2 = true;
EXT4_FS_POSIX_ACL = true;
BTRFS_FS = true;
BTRFS_FS_POSIX_ACL = true;
FUSE_FS = true;

View file

@ -43,9 +43,6 @@ in {
extraConfig = linux-hardened.profile.paravirt // (with self.lib.kernel; {
NR_CPUS = 8;
EXT4_FS = true;
EXT4_USE_FOR_EXT2 = true;
EXT4_FS_POSIX_ACL = true;
BTRFS_FS = true;
BTRFS_FS_POSIX_ACL = true;
});

View file

@ -537,6 +537,10 @@
};
filesystem = {
EXT4_FS = true;
EXT4_USE_FOR_EXT2 = true;
EXT4_FS_POSIX_ACL = true;
OVERLAY_FS = true;
OVERLAY_FS_REDIRECT_DIR = true;
OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW = false;