2021-05-17 19:49:44 +02:00
|
|
|
{ pkgs
|
2021-09-15 22:26:11 +02:00
|
|
|
, linuxKernel
|
2021-05-17 19:49:44 +02:00
|
|
|
, config
|
|
|
|
, buildPackages
|
|
|
|
, callPackage
|
|
|
|
, makeOverridable
|
|
|
|
, recurseIntoAttrs
|
|
|
|
, dontRecurseIntoAttrs
|
|
|
|
, stdenv
|
|
|
|
, stdenvNoCC
|
|
|
|
, newScope
|
|
|
|
, lib
|
2021-10-09 14:48:27 +02:00
|
|
|
, fetchurl
|
2022-04-23 17:21:33 +02:00
|
|
|
, gcc10Stdenv
|
2021-05-17 19:49:44 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
# When adding a kernel:
|
|
|
|
# - Update packageAliases.linux_latest to the latest version
|
|
|
|
# - Update the rev in ../os-specific/linux/kernel/linux-libre.nix to the latest one.
|
|
|
|
# - Update linux_latest_hardened when the patches become available
|
|
|
|
|
2021-09-15 22:26:11 +02:00
|
|
|
with linuxKernel;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2021-09-15 22:26:11 +02:00
|
|
|
let
|
2021-05-17 19:49:44 +02:00
|
|
|
deblobKernel = kernel: callPackage ../os-specific/linux/kernel/linux-libre.nix {
|
|
|
|
linux = kernel;
|
|
|
|
};
|
|
|
|
|
2021-09-15 22:26:11 +02:00
|
|
|
# Hardened Linux
|
|
|
|
hardenedKernelFor = kernel': overrides:
|
2021-10-09 14:48:27 +02:00
|
|
|
let
|
|
|
|
kernel = kernel'.override overrides;
|
|
|
|
version = kernelPatches.hardened.${kernel.meta.branch}.version;
|
|
|
|
major = lib.versions.major version;
|
|
|
|
sha256 = kernelPatches.hardened.${kernel.meta.branch}.sha256;
|
|
|
|
modDirVersion' = builtins.replaceStrings [ kernel.version ] [ version ] kernel.modDirVersion;
|
2021-09-15 22:26:11 +02:00
|
|
|
in kernel.override {
|
|
|
|
structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix {
|
2022-08-19 10:25:05 +02:00
|
|
|
inherit stdenv lib version;
|
2021-10-09 14:48:27 +02:00
|
|
|
};
|
|
|
|
argsOverride = {
|
|
|
|
inherit version;
|
2022-12-21 12:49:37 +01:00
|
|
|
modDirVersion = modDirVersion' + kernelPatches.hardened.${kernel.meta.branch}.extra;
|
2021-10-09 14:48:27 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v${major}.x/linux-${version}.tar.xz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2023-02-22 00:41:34 +01:00
|
|
|
extraMeta = {
|
2023-03-19 17:08:54 +01:00
|
|
|
broken =
|
|
|
|
kernel.meta.broken ||
|
|
|
|
lib.versions.majorMinor version == "4.14" ||
|
|
|
|
(stdenv.isx86_64 && lib.versionAtLeast version "4.19" && lib.versionOlder version "5.5");
|
2023-02-22 00:41:34 +01:00
|
|
|
};
|
2021-09-15 22:26:11 +02:00
|
|
|
};
|
2023-03-13 12:38:06 +01:00
|
|
|
kernelPatches = kernel.kernelPatches ++ [
|
2021-09-15 22:26:11 +02:00
|
|
|
kernelPatches.hardened.${kernel.meta.branch}
|
|
|
|
];
|
|
|
|
isHardened = true;
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { };
|
|
|
|
|
|
|
|
kernels = recurseIntoAttrs (lib.makeExtensible (self: with self;
|
2021-05-17 19:49:44 +02:00
|
|
|
let callPackage = newScope self; in {
|
|
|
|
|
2022-06-30 10:48:25 +02:00
|
|
|
# NOTE: PLEASE DO NOT ADD NEW VENDOR KERNELS TO NIXPKGS.
|
|
|
|
# New vendor kernels should go to nixos-hardware instead.
|
|
|
|
# e.g. https://github.com/NixOS/nixos-hardware/tree/master/microsoft/surface/kernel
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
linux_rpi1 = callPackage ../os-specific/linux/kernel/linux-rpi.nix {
|
|
|
|
kernelPatches = with kernelPatches; [
|
|
|
|
bridge_stp_helper
|
|
|
|
request_key_helper
|
|
|
|
];
|
|
|
|
rpiVersion = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_rpi2 = callPackage ../os-specific/linux/kernel/linux-rpi.nix {
|
|
|
|
kernelPatches = with kernelPatches; [
|
|
|
|
bridge_stp_helper
|
|
|
|
request_key_helper
|
|
|
|
];
|
|
|
|
rpiVersion = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_rpi3 = callPackage ../os-specific/linux/kernel/linux-rpi.nix {
|
|
|
|
kernelPatches = with kernelPatches; [
|
|
|
|
bridge_stp_helper
|
|
|
|
request_key_helper
|
|
|
|
];
|
|
|
|
rpiVersion = 3;
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_rpi4 = callPackage ../os-specific/linux/kernel/linux-rpi.nix {
|
|
|
|
kernelPatches = with kernelPatches; [
|
|
|
|
bridge_stp_helper
|
|
|
|
request_key_helper
|
|
|
|
];
|
|
|
|
rpiVersion = 4;
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_4_14 = callPackage ../os-specific/linux/kernel/linux-4.14.nix {
|
|
|
|
kernelPatches =
|
|
|
|
[ kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
# See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md
|
|
|
|
# when adding a new linux version
|
|
|
|
kernelPatches.cpu-cgroup-v2."4.11"
|
|
|
|
kernelPatches.modinst_arg_list_too_long
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_4_19 = callPackage ../os-specific/linux/kernel/linux-4.19.nix {
|
|
|
|
kernelPatches =
|
|
|
|
[ kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
kernelPatches.modinst_arg_list_too_long
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_5_4 = callPackage ../os-specific/linux/kernel/linux-5.4.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
kernelPatches.rtl8761b_support
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_rt_5_4 = callPackage ../os-specific/linux/kernel/linux-rt-5.4.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
2023-05-09 22:27:23 +02:00
|
|
|
kernelPatches.CVE-2023-32233
|
2021-05-17 19:49:44 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_5_10 = callPackage ../os-specific/linux/kernel/linux-5.10.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux_rt_5_10 = callPackage ../os-specific/linux/kernel/linux-rt-5.10.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
kernelPatches.export-rt-sched-migrate
|
2023-05-09 22:27:23 +02:00
|
|
|
kernelPatches.CVE-2023-32233
|
2021-05-17 19:49:44 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2021-11-01 08:34:59 +01:00
|
|
|
linux_5_15 = callPackage ../os-specific/linux/kernel/linux-5.15.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
linux_{5_15,6_1}: revert patch to fix Equinix Metal bonded networking with `ice` driver
Some Equinix Metal instances, such as a3.large.x86, m3.large.x86
(specific hardware revisions), and n3.large.x86, use the `ice` kernel
driver for their network cards, in conjunction with bonded devices.
However, this commit caused a regression where these bonded devices
would deadlock. This was initially reported by Jaroslav Pulchart on
the netdev mailing list[1], and there were follow-up patches from Dave
Ertman[2][3] that attempted to fix this but were not up to snuff for
various reasons[4].
Specifically, v2 of the patch ([3]) appears to fix the issue on some
devices (tested with 8086:159B network cards), while it is still broken
on others (such as an 8086:1593 network card).
We revert the patch exposing the issue until upstream has a working
solution in order to make Equinix Metal instances work reliably again.
[1]: https://lore.kernel.org/netdev/CAK8fFZ6A_Gphw_3-QMGKEFQk=sfCw1Qmq0TVZK3rtAi7vb621A@mail.gmail.com/
[2]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230111183145.1497367-1-david.m.ertman@intel.com/
[3]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230215191757.1826508-1-david.m.ertman@intel.com/
[4]: https://lore.kernel.org/netdev/cb31a911-ba80-e2dc-231f-851757cfd0b8@intel.com/T/#m6e53f8c43093693c10268140126abe99e082dc1c
2023-02-16 18:58:18 +01:00
|
|
|
kernelPatches.fix-em-ice-bonding
|
2021-11-01 08:34:59 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-12-05 18:42:11 +01:00
|
|
|
linux_rt_5_15 = callPackage ../os-specific/linux/kernel/linux-rt-5.15.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
kernelPatches.export-rt-sched-migrate
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-12-12 08:53:11 +01:00
|
|
|
linux_6_1 = callPackage ../os-specific/linux/kernel/linux-6.1.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
2023-05-12 04:16:21 +02:00
|
|
|
kernelPatches.make-maple-state-reusable-after-mas_empty_area
|
linux_{5_15,6_1}: revert patch to fix Equinix Metal bonded networking with `ice` driver
Some Equinix Metal instances, such as a3.large.x86, m3.large.x86
(specific hardware revisions), and n3.large.x86, use the `ice` kernel
driver for their network cards, in conjunction with bonded devices.
However, this commit caused a regression where these bonded devices
would deadlock. This was initially reported by Jaroslav Pulchart on
the netdev mailing list[1], and there were follow-up patches from Dave
Ertman[2][3] that attempted to fix this but were not up to snuff for
various reasons[4].
Specifically, v2 of the patch ([3]) appears to fix the issue on some
devices (tested with 8086:159B network cards), while it is still broken
on others (such as an 8086:1593 network card).
We revert the patch exposing the issue until upstream has a working
solution in order to make Equinix Metal instances work reliably again.
[1]: https://lore.kernel.org/netdev/CAK8fFZ6A_Gphw_3-QMGKEFQk=sfCw1Qmq0TVZK3rtAi7vb621A@mail.gmail.com/
[2]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230111183145.1497367-1-david.m.ertman@intel.com/
[3]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230215191757.1826508-1-david.m.ertman@intel.com/
[4]: https://lore.kernel.org/netdev/cb31a911-ba80-e2dc-231f-851757cfd0b8@intel.com/T/#m6e53f8c43093693c10268140126abe99e082dc1c
2023-02-16 18:58:18 +01:00
|
|
|
kernelPatches.fix-em-ice-bonding
|
2022-12-12 08:53:11 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-03-26 03:58:52 +02:00
|
|
|
linux_rt_6_1 = callPackage ../os-specific/linux/kernel/linux-rt-6.1.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
2023-05-12 04:16:21 +02:00
|
|
|
kernelPatches.make-maple-state-reusable-after-mas_empty_area
|
2023-03-26 03:58:52 +02:00
|
|
|
kernelPatches.fix-em-ice-bonding
|
|
|
|
kernelPatches.export-rt-sched-migrate
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-02-20 11:40:41 +01:00
|
|
|
linux_6_2 = callPackage ../os-specific/linux/kernel/linux-6.2.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
2023-05-12 04:16:21 +02:00
|
|
|
kernelPatches.make-maple-state-reusable-after-mas_empty_area
|
2023-02-20 11:40:41 +01:00
|
|
|
kernelPatches.fix-em-ice-bonding
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-04-24 10:25:05 +02:00
|
|
|
linux_6_3 = callPackage ../os-specific/linux/kernel/linux-6.3.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
2023-05-12 04:16:21 +02:00
|
|
|
kernelPatches.make-maple-state-reusable-after-mas_empty_area
|
2023-04-24 10:25:05 +02:00
|
|
|
kernelPatches.fix-em-ice-bonding
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2021-11-07 12:18:12 +01:00
|
|
|
linux_testing = let
|
|
|
|
testing = callPackage ../os-specific/linux/kernel/linux-testing.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
];
|
|
|
|
};
|
|
|
|
latest = packageAliases.linux_latest.kernel;
|
|
|
|
in if latest.kernelAtLeast testing.baseVersion
|
|
|
|
then latest
|
|
|
|
else testing;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2023-02-02 22:31:19 +01:00
|
|
|
linux_testing_bcachefs = callPackage ../os-specific/linux/kernel/linux-testing-bcachefs.nix {
|
|
|
|
# Pinned on the last version which Kent's commits can be cleany rebased up.
|
|
|
|
kernel = buildLinux rec {
|
|
|
|
version = "6.1.3";
|
|
|
|
modDirVersion = lib.versions.pad 3 version;
|
|
|
|
extraMeta.branch = lib.versions.majorMinor version;
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
|
|
|
|
hash = "sha256-bcia56dRPkM8WXxzRu1/9L/RFepDo7XiemvbOMVYAxc=";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
kernelPatches = linux_6_1.kernelPatches;
|
2021-05-17 19:49:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
linux_hardkernel_4_14 = callPackage ../os-specific/linux/kernel/linux-hardkernel-4.14.nix {
|
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
kernelPatches.modinst_arg_list_too_long
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-03-28 20:59:12 +02:00
|
|
|
# Using zenKernels like this due lqx&zen came from one source, but may have different base kernel version
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/161773#discussion_r820134708
|
|
|
|
zenKernels = callPackage ../os-specific/linux/kernel/zen-kernels.nix;
|
|
|
|
|
|
|
|
linux_zen = (zenKernels {
|
2021-05-17 19:49:44 +02:00
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
];
|
2022-03-28 20:59:12 +02:00
|
|
|
}).zen;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-03-28 20:59:12 +02:00
|
|
|
linux_lqx = (zenKernels {
|
2021-05-17 19:49:44 +02:00
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
];
|
2022-03-28 20:59:12 +02:00
|
|
|
}).lqx;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-07-21 22:08:10 +02:00
|
|
|
# This contains the variants of the XanMod kernel
|
2022-07-21 23:25:45 +02:00
|
|
|
xanmodKernels = callPackage ../os-specific/linux/kernel/xanmod-kernels.nix {
|
2022-03-22 12:08:21 +01:00
|
|
|
kernelPatches = [
|
|
|
|
kernelPatches.bridge_stp_helper
|
|
|
|
kernelPatches.request_key_helper
|
|
|
|
];
|
2022-07-21 23:25:45 +02:00
|
|
|
};
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-07-21 23:25:45 +02:00
|
|
|
linux_xanmod = xanmodKernels.lts;
|
2022-11-01 11:10:28 +01:00
|
|
|
linux_xanmod_stable = xanmodKernels.main;
|
2022-10-31 18:57:16 +01:00
|
|
|
linux_xanmod_latest = xanmodKernels.main;
|
2022-07-21 22:08:10 +02:00
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
linux_libre = deblobKernel packageAliases.linux_default.kernel;
|
|
|
|
|
|
|
|
linux_latest_libre = deblobKernel packageAliases.linux_latest.kernel;
|
|
|
|
|
2021-08-18 08:42:23 +02:00
|
|
|
linux_hardened = hardenedKernelFor packageAliases.linux_default.kernel { };
|
|
|
|
|
|
|
|
linux_4_14_hardened = hardenedKernelFor kernels.linux_4_14 { };
|
|
|
|
linux_4_19_hardened = hardenedKernelFor kernels.linux_4_19 { };
|
|
|
|
linux_5_4_hardened = hardenedKernelFor kernels.linux_5_4 { };
|
|
|
|
linux_5_10_hardened = hardenedKernelFor kernels.linux_5_10 { };
|
2021-11-15 20:10:37 +01:00
|
|
|
linux_5_15_hardened = hardenedKernelFor kernels.linux_5_15 { };
|
2023-02-22 00:45:54 +01:00
|
|
|
linux_6_1_hardened = hardenedKernelFor kernels.linux_6_1 { };
|
|
|
|
|
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
|
|
|
linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11";
|
|
|
|
linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream";
|
|
|
|
linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream";
|
|
|
|
linux_6_0 = throw "linux 6.0 was removed because it has reached its end of life upstream";
|
|
|
|
|
|
|
|
linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option";
|
|
|
|
|
2022-09-17 17:06:58 +02:00
|
|
|
linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
|
2022-11-01 16:15:08 +01:00
|
|
|
linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
|
2023-01-22 18:47:20 +01:00
|
|
|
linux_6_0_hardened = throw "linux 6.0 was removed because it has reached its end of life upstream";
|
2021-09-15 22:26:11 +02:00
|
|
|
}));
|
2021-05-17 19:49:44 +02:00
|
|
|
/* Linux kernel modules are inherently tied to a specific kernel. So
|
|
|
|
rather than provide specific instances of those packages for a
|
|
|
|
specific kernel, we have a function that builds those packages
|
|
|
|
for a specific kernel. This function can then be called for
|
|
|
|
whatever kernel you're using. */
|
|
|
|
|
|
|
|
packagesFor = kernel_: lib.makeExtensible (self: with self;
|
|
|
|
let callPackage = newScope self; in {
|
|
|
|
inherit callPackage;
|
|
|
|
kernel = kernel_;
|
|
|
|
inherit (kernel) stdenv; # in particular, use the same compiler by default
|
|
|
|
|
|
|
|
# to help determine module compatibility
|
|
|
|
inherit (kernel) isZen isHardened isLibre;
|
|
|
|
inherit (kernel) kernelOlder kernelAtLeast;
|
|
|
|
# Obsolete aliases (these packages do not depend on the kernel).
|
|
|
|
inherit (pkgs) odp-dpdk pktgen; # added 2018-05
|
2021-12-03 16:12:47 +01:00
|
|
|
inherit (pkgs) bcc bpftrace; # added 2021-12
|
2022-11-05 02:32:08 +01:00
|
|
|
inherit (pkgs) oci-seccomp-bpf-hook; # added 2022-11
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
acpi_call = callPackage ../os-specific/linux/acpi-call {};
|
|
|
|
|
2021-09-01 09:47:01 +02:00
|
|
|
akvcam = callPackage ../os-specific/linux/akvcam { };
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2018-09-17 03:12:59 +02:00
|
|
|
amdgpu-pro = callPackage ../os-specific/linux/amdgpu-pro {
|
|
|
|
libffi = pkgs.libffi.overrideAttrs (orig: rec {
|
|
|
|
version = "3.3";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/libffi/libffi/releases/download/v${version}/${orig.pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0mi0cpf8aa40ljjmzxb7im6dbj45bb0kllcd09xgmp834y9agyvj";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
apfs = callPackage ../os-specific/linux/apfs { };
|
|
|
|
|
2022-06-22 10:00:26 +02:00
|
|
|
ax99100 = callPackage ../os-specific/linux/ax99100 {};
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
batman_adv = callPackage ../os-specific/linux/batman-adv {};
|
|
|
|
|
|
|
|
bbswitch = callPackage ../os-specific/linux/bbswitch {};
|
|
|
|
|
2023-03-06 08:59:57 +01:00
|
|
|
ch9344 = callPackage ../os-specific/linux/ch9344 { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
chipsec = callPackage ../tools/security/chipsec {
|
|
|
|
inherit kernel;
|
|
|
|
withDriver = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
cryptodev = callPackage ../os-specific/linux/cryptodev { };
|
|
|
|
|
|
|
|
cpupower = callPackage ../os-specific/linux/cpupower { };
|
|
|
|
|
|
|
|
ddcci-driver = callPackage ../os-specific/linux/ddcci { };
|
|
|
|
|
2022-02-22 19:25:29 +01:00
|
|
|
dddvb = callPackage ../os-specific/linux/dddvb { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
digimend = callPackage ../os-specific/linux/digimend { };
|
|
|
|
|
|
|
|
dpdk-kmods = callPackage ../os-specific/linux/dpdk-kmods { };
|
|
|
|
|
2022-01-25 16:17:18 +01:00
|
|
|
dpdk = pkgs.dpdk.override { inherit kernel; };
|
|
|
|
|
2023-02-22 00:45:59 +01:00
|
|
|
exfat-nofuse = if lib.versionOlder kernel.version "5.8" then callPackage ../os-specific/linux/exfat { } else null;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
evdi = callPackage ../os-specific/linux/evdi { };
|
|
|
|
|
|
|
|
fwts-efi-runtime = callPackage ../os-specific/linux/fwts/module.nix { };
|
|
|
|
|
|
|
|
gcadapter-oc-kmod = callPackage ../os-specific/linux/gcadapter-oc-kmod { };
|
|
|
|
hid-nintendo = callPackage ../os-specific/linux/hid-nintendo { };
|
|
|
|
|
|
|
|
hyperv-daemons = callPackage ../os-specific/linux/hyperv-daemons { };
|
|
|
|
|
|
|
|
e1000e = if lib.versionOlder kernel.version "4.10" then callPackage ../os-specific/linux/e1000e {} else null;
|
|
|
|
|
|
|
|
intel-speed-select = if lib.versionAtLeast kernel.version "5.3" then callPackage ../os-specific/linux/intel-speed-select { } else null;
|
|
|
|
|
2023-01-26 16:59:59 +01:00
|
|
|
ipu6-drivers = callPackage ../os-specific/linux/ipu6-drivers {};
|
|
|
|
|
2023-02-14 16:33:59 +01:00
|
|
|
ivsc-driver = callPackage ../os-specific/linux/ivsc-driver {};
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
|
|
|
|
|
|
|
|
it87 = callPackage ../os-specific/linux/it87 {};
|
|
|
|
|
2021-12-20 11:48:08 +01:00
|
|
|
asus-ec-sensors = callPackage ../os-specific/linux/asus-ec-sensors {};
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
asus-wmi-sensors = callPackage ../os-specific/linux/asus-wmi-sensors {};
|
|
|
|
|
|
|
|
ena = callPackage ../os-specific/linux/ena {};
|
|
|
|
|
2022-01-14 05:15:03 +01:00
|
|
|
kvdo = callPackage ../os-specific/linux/kvdo {};
|
|
|
|
|
2021-12-20 11:47:44 +01:00
|
|
|
liquidtux = callPackage ../os-specific/linux/liquidtux {};
|
|
|
|
|
2022-02-13 13:08:35 +01:00
|
|
|
lkrg = callPackage ../os-specific/linux/lkrg {};
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
|
|
|
|
|
|
|
lttng-modules = callPackage ../os-specific/linux/lttng-modules { };
|
|
|
|
|
|
|
|
broadcom_sta = callPackage ../os-specific/linux/broadcom-sta { };
|
|
|
|
|
|
|
|
tbs = callPackage ../os-specific/linux/tbs { };
|
|
|
|
|
|
|
|
mbp2018-bridge-drv = callPackage ../os-specific/linux/mbp-modules/mbp2018-bridge-drv { };
|
|
|
|
|
2022-06-02 08:27:42 +02:00
|
|
|
new-lg4ff = callPackage ../os-specific/linux/new-lg4ff { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
nvidiabl = callPackage ../os-specific/linux/nvidiabl { };
|
|
|
|
|
2022-03-10 22:37:21 +01:00
|
|
|
nvidiaPackages = dontRecurseIntoAttrs (lib.makeExtensible (_: callPackage ../os-specific/linux/nvidia-x11 { }));
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-08-15 20:31:14 +02:00
|
|
|
nvidia_x11 = nvidiaPackages.stable;
|
|
|
|
nvidia_x11_beta = nvidiaPackages.beta;
|
2021-05-17 19:49:44 +02:00
|
|
|
nvidia_x11_legacy340 = nvidiaPackages.legacy_340;
|
|
|
|
nvidia_x11_legacy390 = nvidiaPackages.legacy_390;
|
2021-10-28 23:23:00 +02:00
|
|
|
nvidia_x11_legacy470 = nvidiaPackages.legacy_470;
|
2022-08-15 20:31:14 +02:00
|
|
|
nvidia_x11_production = nvidiaPackages.production;
|
2021-05-17 19:49:44 +02:00
|
|
|
nvidia_x11_vulkan_beta = nvidiaPackages.vulkan_beta;
|
|
|
|
|
2022-08-24 21:03:34 +02:00
|
|
|
# this is not a replacement for nvidia_x11*
|
2022-05-12 08:09:32 +02:00
|
|
|
# only the opensource kernel driver exposed for hydra to build
|
2022-08-24 21:03:34 +02:00
|
|
|
nvidia_x11_beta_open = nvidiaPackages.beta.open;
|
|
|
|
nvidia_x11_production_open = nvidiaPackages.production.open;
|
|
|
|
nvidia_x11_stable_open = nvidiaPackages.stable.open;
|
|
|
|
nvidia_x11_vulkan_beta_open = nvidiaPackages.vulkan_beta.open;
|
2022-05-12 08:09:32 +02:00
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
openrazer = callPackage ../os-specific/linux/openrazer/driver.nix { };
|
|
|
|
|
|
|
|
ply = callPackage ../os-specific/linux/ply { };
|
|
|
|
|
|
|
|
r8125 = callPackage ../os-specific/linux/r8125 { };
|
|
|
|
|
|
|
|
r8168 = callPackage ../os-specific/linux/r8168 { };
|
|
|
|
|
|
|
|
rtl8188eus-aircrack = callPackage ../os-specific/linux/rtl8188eus-aircrack { };
|
|
|
|
|
|
|
|
rtl8192eu = callPackage ../os-specific/linux/rtl8192eu { };
|
|
|
|
|
2022-01-23 11:57:30 +01:00
|
|
|
rtl8189es = callPackage ../os-specific/linux/rtl8189es { };
|
|
|
|
|
2022-07-10 15:59:28 +02:00
|
|
|
rtl8189fs = callPackage ../os-specific/linux/rtl8189fs { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
rtl8723bs = callPackage ../os-specific/linux/rtl8723bs { };
|
|
|
|
|
2022-11-03 03:00:00 +01:00
|
|
|
rtl8723ds = callPackage ../os-specific/linux/rtl8723ds { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
rtl8812au = callPackage ../os-specific/linux/rtl8812au { };
|
|
|
|
|
|
|
|
rtl8814au = callPackage ../os-specific/linux/rtl8814au { };
|
|
|
|
|
|
|
|
rtl88xxau-aircrack = callPackage ../os-specific/linux/rtl88xxau-aircrack {};
|
|
|
|
|
|
|
|
rtl8821au = callPackage ../os-specific/linux/rtl8821au { };
|
|
|
|
|
|
|
|
rtl8821ce = callPackage ../os-specific/linux/rtl8821ce { };
|
|
|
|
|
|
|
|
rtl88x2bu = callPackage ../os-specific/linux/rtl88x2bu { };
|
|
|
|
|
|
|
|
rtl8821cu = callPackage ../os-specific/linux/rtl8821cu { };
|
|
|
|
|
|
|
|
rtw88 = callPackage ../os-specific/linux/rtw88 { };
|
|
|
|
rtlwifi_new = rtw88;
|
|
|
|
|
2022-01-21 16:59:08 +01:00
|
|
|
rtw89 = if lib.versionOlder kernel.version "5.16" then callPackage ../os-specific/linux/rtw89 { } else null;
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
openafs_1_8 = callPackage ../servers/openafs/1.8/module.nix { };
|
|
|
|
# Current stable release; don't backport release updates!
|
|
|
|
openafs = openafs_1_8;
|
|
|
|
|
|
|
|
facetimehd = callPackage ../os-specific/linux/facetimehd { };
|
|
|
|
|
|
|
|
tuxedo-keyboard = if lib.versionAtLeast kernel.version "4.14" then callPackage ../os-specific/linux/tuxedo-keyboard { } else null;
|
|
|
|
|
|
|
|
jool = callPackage ../os-specific/linux/jool { };
|
|
|
|
|
|
|
|
kvmfr = callPackage ../os-specific/linux/kvmfr { };
|
|
|
|
|
|
|
|
mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { };
|
|
|
|
|
|
|
|
mwprocapture = callPackage ../os-specific/linux/mwprocapture { };
|
|
|
|
|
|
|
|
mxu11x0 = callPackage ../os-specific/linux/mxu11x0 { };
|
|
|
|
|
|
|
|
# compiles but has to be integrated into the kernel somehow
|
|
|
|
# Let's have it uncommented and finish it..
|
|
|
|
ndiswrapper = callPackage ../os-specific/linux/ndiswrapper { };
|
|
|
|
|
|
|
|
netatop = callPackage ../os-specific/linux/netatop { };
|
|
|
|
|
2022-08-14 10:12:16 +02:00
|
|
|
perf = callPackage ../os-specific/linux/kernel/perf { };
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
phc-intel = if lib.versionAtLeast kernel.version "4.10" then callPackage ../os-specific/linux/phc-intel { } else null;
|
|
|
|
|
2022-07-09 14:43:27 +02:00
|
|
|
prl-tools = callPackage ../os-specific/linux/prl-tools { };
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
sch_cake = callPackage ../os-specific/linux/sch_cake { };
|
|
|
|
|
|
|
|
isgx = callPackage ../os-specific/linux/isgx { };
|
|
|
|
|
2021-07-29 16:18:49 +02:00
|
|
|
rr-zen_workaround = callPackage ../development/tools/analysis/rr/zen_workaround.nix { };
|
|
|
|
|
2022-11-05 06:10:51 +01:00
|
|
|
sysdig = callPackage ../os-specific/linux/sysdig {};
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
systemtap = callPackage ../development/tools/profiling/systemtap { };
|
|
|
|
|
|
|
|
system76 = callPackage ../os-specific/linux/system76 { };
|
|
|
|
|
|
|
|
system76-acpi = callPackage ../os-specific/linux/system76-acpi { };
|
|
|
|
|
|
|
|
system76-power = callPackage ../os-specific/linux/system76-power { };
|
|
|
|
|
|
|
|
system76-io = callPackage ../os-specific/linux/system76-io { };
|
|
|
|
|
2023-04-29 12:32:09 +02:00
|
|
|
system76-scheduler = callPackage ../os-specific/linux/system76-scheduler { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
tmon = callPackage ../os-specific/linux/tmon { };
|
|
|
|
|
|
|
|
tp_smapi = callPackage ../os-specific/linux/tp_smapi { };
|
|
|
|
|
|
|
|
turbostat = callPackage ../os-specific/linux/turbostat { };
|
|
|
|
|
|
|
|
usbip = callPackage ../os-specific/linux/usbip { };
|
|
|
|
|
|
|
|
v86d = callPackage ../os-specific/linux/v86d { };
|
|
|
|
|
|
|
|
veikk-linux-driver = callPackage ../os-specific/linux/veikk-linux-driver { };
|
|
|
|
vendor-reset = callPackage ../os-specific/linux/vendor-reset { };
|
|
|
|
|
2022-02-16 03:36:57 +01:00
|
|
|
vhba = callPackage ../applications/emulators/cdemu/vhba.nix { };
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-01-11 00:48:24 +01:00
|
|
|
virtio_vmmci = callPackage ../os-specific/linux/virtio_vmmci { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
virtualbox = callPackage ../os-specific/linux/virtualbox {
|
|
|
|
virtualbox = pkgs.virtualboxHardened;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions {
|
|
|
|
virtualbox = pkgs.virtualboxHardened;
|
|
|
|
};
|
|
|
|
|
2021-09-20 14:20:17 +02:00
|
|
|
vm-tools = callPackage ../os-specific/linux/vm-tools { };
|
|
|
|
|
2022-01-10 14:05:17 +01:00
|
|
|
vmm_clock = callPackage ../os-specific/linux/vmm_clock { };
|
|
|
|
|
2022-04-23 17:29:00 +02:00
|
|
|
vmware = callPackage ../os-specific/linux/vmware { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
wireguard = if lib.versionOlder kernel.version "5.6" then callPackage ../os-specific/linux/wireguard { } else null;
|
|
|
|
|
|
|
|
x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { };
|
|
|
|
|
2022-02-19 23:21:19 +01:00
|
|
|
xone = if lib.versionAtLeast kernel.version "5.4" then callPackage ../os-specific/linux/xone { } else null;
|
2022-02-19 23:14:59 +01:00
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
xpadneo = callPackage ../os-specific/linux/xpadneo { };
|
|
|
|
|
2022-07-13 10:17:48 +02:00
|
|
|
ithc = callPackage ../os-specific/linux/ithc { };
|
|
|
|
|
2021-05-17 19:49:44 +02:00
|
|
|
zenpower = callPackage ../os-specific/linux/zenpower { };
|
|
|
|
|
2023-05-07 12:55:24 +02:00
|
|
|
zfsStable = callPackage ../os-specific/linux/zfs/stable.nix {
|
|
|
|
configFile = "kernel";
|
|
|
|
inherit pkgs kernel;
|
|
|
|
};
|
|
|
|
zfsUnstable = callPackage ../os-specific/linux/zfs/unstable.nix {
|
|
|
|
configFile = "kernel";
|
|
|
|
inherit pkgs kernel;
|
|
|
|
};
|
2021-05-17 19:49:44 +02:00
|
|
|
zfs = zfsStable;
|
|
|
|
|
|
|
|
can-isotp = callPackage ../os-specific/linux/can-isotp { };
|
|
|
|
|
2022-07-23 21:37:49 +02:00
|
|
|
qc71_laptop = callPackage ../os-specific/linux/qc71_laptop { };
|
|
|
|
|
2022-07-23 21:49:01 +02:00
|
|
|
hid-ite8291r3 = callPackage ../os-specific/linux/hid-ite8291r3 { };
|
|
|
|
|
2022-04-01 11:33:10 +02:00
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
2021-05-17 19:49:44 +02:00
|
|
|
ati_drivers_x11 = throw "ati drivers are no longer supported by any kernel >=4.1"; # added 2021-05-18;
|
2022-08-01 10:38:50 +02:00
|
|
|
xmm7360-pci = throw "Support for the XMM7360 WWAN card was added to the iosm kmod in mainline kernel version 5.18";
|
2021-05-17 19:49:44 +02:00
|
|
|
});
|
|
|
|
|
2021-08-18 08:42:23 +02:00
|
|
|
hardenedPackagesFor = kernel: overrides: packagesFor (hardenedKernelFor kernel overrides);
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
vanillaPackages = {
|
|
|
|
# recurse to build modules for the kernels
|
|
|
|
linux_4_14 = recurseIntoAttrs (packagesFor kernels.linux_4_14);
|
|
|
|
linux_4_19 = recurseIntoAttrs (packagesFor kernels.linux_4_19);
|
|
|
|
linux_5_4 = recurseIntoAttrs (packagesFor kernels.linux_5_4);
|
|
|
|
linux_5_10 = recurseIntoAttrs (packagesFor kernels.linux_5_10);
|
2021-11-01 08:34:59 +01:00
|
|
|
linux_5_15 = recurseIntoAttrs (packagesFor kernels.linux_5_15);
|
2023-02-22 00:45:54 +01:00
|
|
|
linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1);
|
|
|
|
linux_6_2 = recurseIntoAttrs (packagesFor kernels.linux_6_2);
|
2023-04-24 10:25:05 +02:00
|
|
|
linux_6_3 = recurseIntoAttrs (packagesFor kernels.linux_6_3);
|
2023-02-22 00:45:54 +01:00
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
|
|
|
linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08
|
2022-09-17 17:06:58 +02:00
|
|
|
linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17
|
2022-11-01 16:15:08 +01:00
|
|
|
linux_5_19 = throw "linux 5.19 was removed because it reached its end of life upstream"; # Added 2022-11-01
|
2023-01-22 18:47:20 +01:00
|
|
|
linux_6_0 = throw "linux 6.0 was removed because it reached its end of life upstream"; # Added 2023-01-20
|
2021-05-17 19:49:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
rtPackages = {
|
|
|
|
# realtime kernel packages
|
|
|
|
linux_rt_5_4 = packagesFor kernels.linux_rt_5_4;
|
|
|
|
linux_rt_5_10 = packagesFor kernels.linux_rt_5_10;
|
2022-12-05 18:42:11 +01:00
|
|
|
linux_rt_5_15 = packagesFor kernels.linux_rt_5_15;
|
2023-03-26 03:58:52 +02:00
|
|
|
linux_rt_6_1 = packagesFor kernels.linux_rt_6_1;
|
2021-05-17 19:49:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
rpiPackages = {
|
|
|
|
linux_rpi1 = packagesFor kernels.linux_rpi1;
|
|
|
|
linux_rpi2 = packagesFor kernels.linux_rpi2;
|
|
|
|
linux_rpi3 = packagesFor kernels.linux_rpi3;
|
|
|
|
linux_rpi4 = packagesFor kernels.linux_rpi4;
|
|
|
|
};
|
|
|
|
|
2021-09-15 22:26:11 +02:00
|
|
|
packages = recurseIntoAttrs (vanillaPackages // rtPackages // rpiPackages // {
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
# Intentionally lacks recurseIntoAttrs, as -rc kernels will quite likely break out-of-tree modules and cause failed Hydra builds.
|
|
|
|
linux_testing = packagesFor kernels.linux_testing;
|
|
|
|
linux_testing_bcachefs = recurseIntoAttrs (packagesFor kernels.linux_testing_bcachefs);
|
|
|
|
|
|
|
|
linux_hardened = recurseIntoAttrs (hardenedPackagesFor packageAliases.linux_default.kernel { });
|
2021-08-17 18:52:37 +02:00
|
|
|
|
2022-04-23 17:21:33 +02:00
|
|
|
linux_4_14_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_4_14 {
|
|
|
|
stdenv = gcc10Stdenv;
|
|
|
|
buildPackages = buildPackages // { stdenv = buildPackages.gcc10Stdenv; };
|
|
|
|
});
|
2022-04-23 18:02:31 +02:00
|
|
|
linux_4_19_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_4_19 {
|
|
|
|
stdenv = gcc10Stdenv;
|
|
|
|
buildPackages = buildPackages // { stdenv = buildPackages.gcc10Stdenv; };
|
|
|
|
});
|
2022-04-23 18:02:55 +02:00
|
|
|
linux_5_4_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_4 {
|
|
|
|
stdenv = gcc10Stdenv;
|
|
|
|
buildPackages = buildPackages // { stdenv = buildPackages.gcc10Stdenv; };
|
|
|
|
});
|
2021-08-17 18:52:37 +02:00
|
|
|
linux_5_10_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_10 { });
|
2021-11-15 20:10:37 +01:00
|
|
|
linux_5_15_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_15 { });
|
2023-01-15 13:21:06 +01:00
|
|
|
linux_6_1_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_6_1 { });
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
linux_zen = recurseIntoAttrs (packagesFor kernels.linux_zen);
|
|
|
|
linux_lqx = recurseIntoAttrs (packagesFor kernels.linux_lqx);
|
|
|
|
linux_xanmod = recurseIntoAttrs (packagesFor kernels.linux_xanmod);
|
2022-11-01 11:10:28 +01:00
|
|
|
linux_xanmod_stable = recurseIntoAttrs (packagesFor kernels.linux_xanmod_stable);
|
2022-03-22 12:08:21 +01:00
|
|
|
linux_xanmod_latest = recurseIntoAttrs (packagesFor kernels.linux_xanmod_latest);
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
hardkernel_4_14 = recurseIntoAttrs (packagesFor kernels.linux_hardkernel_4_14);
|
|
|
|
|
|
|
|
linux_libre = recurseIntoAttrs (packagesFor kernels.linux_libre);
|
|
|
|
|
|
|
|
linux_latest_libre = recurseIntoAttrs (packagesFor kernels.linux_latest_libre);
|
2023-02-22 00:45:54 +01:00
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
|
|
|
linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
|
|
|
|
linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
|
|
|
|
linux_6_0_hardened = throw "linux 6.0 was removed because it has reached its end of life upstream";
|
|
|
|
linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option";
|
2021-09-15 22:26:11 +02:00
|
|
|
});
|
2021-05-17 19:49:44 +02:00
|
|
|
|
|
|
|
packageAliases = {
|
2023-02-08 15:07:08 +01:00
|
|
|
linux_default = packages.linux_6_1;
|
2021-05-17 19:49:44 +02:00
|
|
|
# Update this when adding the newest kernel major version!
|
2023-04-24 10:25:05 +02:00
|
|
|
linux_latest = packages.linux_6_3;
|
2023-04-05 22:59:11 +02:00
|
|
|
linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake";
|
2021-05-17 19:49:44 +02:00
|
|
|
linux_rt_default = packages.linux_rt_5_4;
|
2023-03-26 03:58:52 +02:00
|
|
|
linux_rt_latest = packages.linux_rt_6_1;
|
2021-05-17 19:49:44 +02:00
|
|
|
linux_hardkernel_latest = packages.hardkernel_4_14;
|
|
|
|
};
|
|
|
|
|
2022-12-20 14:42:38 +01:00
|
|
|
manualConfig = callPackage ../os-specific/linux/kernel/manual-config.nix {};
|
2021-05-17 19:49:44 +02:00
|
|
|
|
2022-12-21 12:49:37 +01:00
|
|
|
customPackage = { version, src, modDirVersion ? lib.versions.pad 3 version, configfile, allowImportFromDerivation ? true }:
|
2021-05-17 19:49:44 +02:00
|
|
|
recurseIntoAttrs (packagesFor (manualConfig {
|
2022-12-20 14:42:38 +01:00
|
|
|
inherit version src modDirVersion configfile allowImportFromDerivation;
|
2021-05-17 19:49:44 +02:00
|
|
|
}));
|
|
|
|
|
|
|
|
# Derive one of the default .config files
|
|
|
|
linuxConfig = {
|
|
|
|
src,
|
2023-03-22 18:43:07 +01:00
|
|
|
kernelPatches ? [],
|
2021-05-17 19:49:44 +02:00
|
|
|
version ? (builtins.parseDrvName src.name).version,
|
|
|
|
makeTarget ? "defconfig",
|
|
|
|
name ? "kernel.config",
|
|
|
|
}: stdenvNoCC.mkDerivation {
|
|
|
|
inherit name src;
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ]
|
|
|
|
++ lib.optionals (lib.versionAtLeast version "4.16") [ buildPackages.bison buildPackages.flex ];
|
2023-03-22 18:43:07 +01:00
|
|
|
patches = map (p: p.patch) kernelPatches; # Patches may include new configs.
|
2021-05-17 19:49:44 +02:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs scripts/
|
|
|
|
'';
|
|
|
|
buildPhase = ''
|
|
|
|
set -x
|
|
|
|
make \
|
|
|
|
ARCH=${stdenv.hostPlatform.linuxArch} \
|
|
|
|
HOSTCC=${buildPackages.stdenv.cc.targetPrefix}gcc \
|
|
|
|
${makeTarget}
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
cp .config $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
buildLinux = attrs: callPackage ../os-specific/linux/kernel/generic.nix attrs;
|
|
|
|
|
|
|
|
}
|