Skip to content

Commit d6e4e61

Browse files
committed
hosts/arael: build Linux kernel 6.1 since 6.3 is broken
openzfs/zfs#14555 Signed-off-by: Jakub Sokołowski <[email protected]>
1 parent ad04257 commit d6e4e61

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hosts/arael/kernel_vanilla_6_3.nix hosts/arael/kernel_vanilla_6_1.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ lib, buildLinux, fetchurl, ... }@args:
22

33
buildLinux (args // rec {
4-
version = "6.3.13";
4+
version = "6.1.46";
55

66
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
77
modDirVersion = lib.versions.pad 3 version;
@@ -11,7 +11,7 @@ buildLinux (args // rec {
1111

1212
src = fetchurl {
1313
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
14-
sha256 = "1ywijjhf19bciip75ppzjjh7bkadd449jr64yg2j5049w9h0aipa";
14+
sha256 = "15m228bllks2p8gpsmvplx08yxzp7bij9fnmnafqszylrk7ppxpm";
1515
};
1616

1717
kernelPatches = [

hosts/arael/sd-image.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ in {
1919
};
2020
consoleLogLevel = lib.mkDefault 7;
2121
kernelParams = ["cma=32M" "console=ttyS2,115200n8" "console=tty0"];
22-
kernelPackages = pkgs.linuxPackagesFor (pkgs.callPackage ./kernel_vanilla_6_3.nix { });
22+
kernelPackages = pkgs.linuxPackagesFor (pkgs.callPackage ./kernel_vanilla_6_1.nix { });
2323
};
2424

2525
sdImage = {

0 commit comments

Comments
 (0)