summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.19.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-19 00:01:36 +0000
committerGitHub <noreply@github.com>2021-07-19 00:01:36 +0000
commitdc802b2e196f95ce42daa7591e475bba34047331 (patch)
treee490c9bceea445e1eff80d7e883b5621e2c29bec /pkgs/os-specific/linux/kernel/linux-4.19.nix
parente15af378fb53182b63f645c34e4f01cc5879912c (diff)
parentd5bd34ebf2c2c2b380b76cb86bc68522bc6af4d7 (diff)
downloadnixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar.gz
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar.bz2
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar.lz
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar.xz
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.tar.zst
nixpkgs-dc802b2e196f95ce42daa7591e475bba34047331.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.19.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 460982b6d2f..3785c6b5536 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "4.19.196";
+  version = "4.19.197";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "0liapgaczv6lq7223wnq2cbwfb6w93iw14dv1xidcb3bnakm4h5f";
+    sha256 = "10kj442qaky6rpl65k5rrvd3p6mdgz4p321zvf4s312ixfdja0g6";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ];