Unverified Commit 97dc21f7 authored by K900's avatar K900 Committed by GitHub
Browse files

Linux kernel updates 2025-03-23 (#392238)

parents aa1d7edc a187f23b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ let
      linux_5_15_hardened
      linux_6_1_hardened
      linux_6_6_hardened
      linux_6_11_hardened
      linux_6_12_hardened
      linux_6_13_hardened
      linux_rt_5_4
+5 −0
Original line number Diff line number Diff line
@@ -872,6 +872,7 @@ let
      CGROUP_HUGETLB = yes;
      CGROUP_PERF = yes;
      CGROUP_RDMA = yes;
      CGROUP_DMEM = whenAtLeast "6.14" yes;

      MEMCG = yes;
      MEMCG_SWAP = whenOlder "6.1" yes;
@@ -1099,6 +1100,10 @@ let

        MD = yes; # Device mapper (RAID, LVM, etc.)

        # enable support for device trees and overlays
        OF = option yes;
        OF_OVERLAY = option yes;

        # Enable initrd support.
        BLK_DEV_INITRD = yes;

+10 −10
Original line number Diff line number Diff line
@@ -20,19 +20,19 @@
        "hash": "sha256:0vpgb3lmhgv5iw9b1z0kqr6vdv44if49marfp5858z3a8yj69bdk"
    },
    "6.6": {
        "version": "6.6.83",
        "hash": "sha256:0262q81mwhy8plql8hnnfvagp460vfl127kaayya113l7gkbnjw9"
    },
    "6.11": {
        "version": "6.11.11",
        "hash": "sha256:1z2913y38clnlmhvwj49h7p4pic24s4d8np7nmd4lk7m2xz8w532"
        "version": "6.6.84",
        "hash": "sha256:19vvq558vs2ivj4l6kmyha30a94fh42wmijsghsdnq8salhhglkz"
    },
    "6.12": {
        "version": "6.12.19",
        "hash": "sha256:0cb5ri6xsd9fyf0s48xrrsbhqzbgjd0iddnid6qk8i60prbz0fyp"
        "version": "6.12.20",
        "hash": "sha256:1ivakcj0gi191687zagl1qfsip0567p1pk3yy1s2xf0agfq8j3i3"
    },
    "6.13": {
        "version": "6.13.7",
        "hash": "sha256:07c08x68fgcsgriss5z8w427h69y52s887vas91jzb5p70hbcf9s"
        "version": "6.13.8",
        "hash": "sha256:1fqsfnam0ca2lyqgi9vh7x6xa24yjk6ym6z85bn6nrrxsxczm6i5"
    },
    "6.14": {
        "version": "6.14",
        "hash": "sha256:0w3nqh02vl8f2wsx3fmsvw1pdsnjs5zfqcmv2w2vnqdiwy1vd552"
    }
}
+2 −2
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@
  linux,
  scripts ? fetchsvn {
    url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
    rev = "19729";
    sha256 = "0w7bhb0ybvvx28gqrhk81wzhqxkrfbhzwr3hv1mpr3cjgldfppr9";
    rev = "19746";
    sha256 = "07kzanf61ja2jw6rac8jd0w2bs4i41wqclr59m2h6c8j0dc7w4as";
  },
  ...
}@args:
+3 −3
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
}@args:

let
  version = "5.10.233-rt125"; # updated by ./update-rt.sh
  version = "5.10.234-rt127"; # updated by ./update-rt.sh
  branch = lib.versions.majorMinor version;
  kversion = builtins.elemAt (lib.splitString "-" version) 0;
in
@@ -25,7 +25,7 @@ buildLinux (

    src = fetchurl {
      url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
      sha256 = "0lkz2g8r032f027j3gih3f7crx991mrpng9qgqc5k4cc1wl5g7i3";
      sha256 = "1rgb4v6dvqlw1mgzsli0hxaj2d5d4m1nylgcrwm4bkpiwbzc95wm";
    };

    kernelPatches =
@@ -34,7 +34,7 @@ buildLinux (
          name = "rt";
          patch = fetchurl {
            url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
            sha256 = "1cx91p88h169v69lxz7vbjjnxdzdz9v28liypz099xghibwhcwfh";
            sha256 = "1pmfba5sjmhai2hbzgbwhak46jhc45rcxf7zdgx5hbhbpgbl9d49";
          };
        };
      in
Loading