Skip to content

Commit

Permalink
[Backport release-24.05] nixos/ipu6: Don't build out-of-tree driver f…
Browse files Browse the repository at this point in the history
…or kernels that have it (#332240)
  • Loading branch information
shlevy authored Sep 1, 2024
2 parents 1b225ae + 486943a commit fbbd932
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions nixos/modules/hardware/video/webcam/ipu6.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ in

config = mkIf cfg.enable {

boot.extraModulePackages = with config.boot.kernelPackages; [
ipu6-drivers
];
# Module is upstream as of 6.10
boot.extraModulePackages = with config.boot.kernelPackages;
optional (kernelOlder "6.10") ipu6-drivers;

hardware.firmware = with pkgs; [
ipu6-camera-bins
Expand Down
5 changes: 4 additions & 1 deletion pkgs/top-level/linux-kernels.nix
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,10 @@ in {

intel-speed-select = if lib.versionAtLeast kernel.version "5.3" then callPackage ../os-specific/linux/intel-speed-select { } else null;

ipu6-drivers = callPackage ../os-specific/linux/ipu6-drivers {};
ipu6-drivers =
if kernelOlder "6.10"
then callPackage ../os-specific/linux/ipu6-drivers {}
else null;

ivsc-driver = callPackage ../os-specific/linux/ivsc-driver {};

Expand Down

0 comments on commit fbbd932

Please sign in to comment.