Skip to content

Commit

Permalink
linux: 5.7-rc6 -> 5.8-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Jun 15, 2020
1 parent 8a73cd8 commit 5953625
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/common-config.nix
Expand Up @@ -206,8 +206,8 @@ let
B43_PHY_HT = option yes;
BCMA_HOST_PCI = option yes;
RTW88 = whenAtLeast "5.2" module;
RTW88_8822BE = whenAtLeast "5.2" yes;
RTW88_8822CE = whenAtLeast "5.2" yes;
RTW88_8822BE = mkMerge [ (whenBetween "5.2" "5.8" yes) (whenAtLeast "5.8" module) ];
RTW88_8822CE = mkMerge [ (whenBetween "5.2" "5.8" yes) (whenAtLeast "5.8" module) ];
};

fb = {
Expand Down
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/kernel/linux-testing.nix
Expand Up @@ -3,15 +3,15 @@
with stdenv.lib;

buildLinux (args // rec {
version = "5.7-rc6";
extraMeta.branch = "5.7";
version = "5.8-rc1";
extraMeta.branch = "5.1";

# modDirVersion needs to be x.y.z, will always add .0
modDirVersion = if (modDirVersionArg == null) then builtins.replaceStrings ["-"] [".0-"] version else modDirVersionArg;

src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
sha256 = "0g04zwdxks7pa5q6shl5xl2rml1w95rxq7sqkkadj11mpk2k89w4";
sha256 = "1gb7g2vrgg0zz281lv1ir1r0535spc40j65p0azmdxlk24fkfxfc";
};

# Should the testing kernels ever be built on Hydra?
Expand Down

0 comments on commit 5953625

Please sign in to comment.