chore: switch kokoro to use linux kernel version 7.0
Some checks failed
ci / treefmt (push) Failing after 6s
Some checks failed
ci / treefmt (push) Failing after 6s
This commit is contained in:
parent
7a8725e90e
commit
1c13f66f90
2 changed files with 5 additions and 2 deletions
|
|
@ -2,4 +2,7 @@
|
|||
linuxPackages_latest = prev.linuxPackages_latest.extend (self: super: {
|
||||
imx471 = self.callPackage ./package.nix {};
|
||||
});
|
||||
linuxPackages_7_0 = prev.linuxPackages_7_0.extend (self: super: {
|
||||
imx471 = self.callPackage ./package.nix {};
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,13 +14,13 @@
|
|||
];
|
||||
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
kernelPackages = pkgs.linuxPackages_7_0;
|
||||
kernelModules = [
|
||||
"imx471"
|
||||
"kvm-intel"
|
||||
"v4l2loopback"
|
||||
];
|
||||
extraModulePackages = with pkgs.linuxPackages_latest; [
|
||||
extraModulePackages = with pkgs.linuxPackages_7_0; [
|
||||
imx471
|
||||
v4l2loopback
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue