summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/common-config.nix
diff options
context:
space:
mode:
authorKiskae <Kiskae@users.noreply.github.com>2023-09-11 12:25:02 +0200
committerAlyssa Ross <hi@alyssa.is>2023-09-12 07:45:33 +0000
commit813e00074293f74e12800982b9025c5cdf25f08b (patch)
treecba5931edf0c2aa436a272e09d69ebdfff000988 /pkgs/os-specific/linux/kernel/common-config.nix
parent55ec5ae7d6c3f7866a0696a6ccfb66a1665b3d72 (diff)
downloadnixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar.gz
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar.bz2
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar.lz
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar.xz
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.tar.zst
nixpkgs-813e00074293f74e12800982b9025c5cdf25f08b.zip
linux_testing: 6.5-rc7 -> 6.6-rc1
rc1: https://lwn.net/Articles/944122/
Diffstat (limited to 'pkgs/os-specific/linux/kernel/common-config.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/common-config.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index c8ae911c128..2e558267736 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -603,8 +603,8 @@ let
 
     microcode = {
       MICROCODE       = yes;
-      MICROCODE_INTEL = yes;
-      MICROCODE_AMD   = yes;
+      MICROCODE_INTEL = whenOlder "6.6" yes;
+      MICROCODE_AMD   = whenOlder "6.6" yes;
       # Write Back Throttling
       # https://lwn.net/Articles/682582/
       # https://bugzilla.kernel.org/show_bug.cgi?id=12309#c655
@@ -913,7 +913,7 @@ let
       SECCOMP             = yes; # used by systemd >= 231
       SECCOMP_FILTER      = yes; # ditto
       POSIX_MQUEUE        = yes;
-      FRONTSWAP           = yes;
+      FRONTSWAP           = whenOlder "6.6" yes;
       FUSION              = yes; # Fusion MPT device support
       IDE                 = whenOlder "5.14" no; # deprecated IDE support, removed in 5.14
       IDLE_PAGE_TRACKING  = yes;