linuxKernel.kernels.linux_testing_bcachefs: 6.1.3-unstable-2023-02-01 -> 6.4.0-unstable-2023-06-28

This commit is contained in:
PedroHLC ☭ 2023-03-03 22:27:21 -03:00 committed by Jörg Thalheim
parent c252f82800
commit 871e005913
2 changed files with 8 additions and 14 deletions

View file

@ -2,10 +2,12 @@
, stdenv , stdenv
, fetchpatch , fetchpatch
, kernel , kernel
, commitDate ? "2023-02-01" , commitDate ? "2023-06-28"
, currentCommit ? "65960c284ad149cc4bfbd64f21e6889c1e3d1c5f" # bcachefs-tools stores the expected-revision in:
, diffHash ? "sha256-4wpY3aYZ93OXSU4wmQs9K62nPyIzjKu4RBQTwksmyyk=" # https://evilpiepirate.org/git/bcachefs-tools.git/tree/.bcachefs_revision
# but this does not means that it'll be the latest-compatible revision
, currentCommit ? "84f132d5696138bb038d2dc8f1162d2fab5ac832"
, diffHash ? "sha256-RaBWBU7rXjJFb1euFAFBHWCBQAG7npaCodjp/vMYpyw="
, kernelPatches # must always be defined in bcachefs' all-packages.nix entry because it's also a top-level attribute supplied by callPackage , kernelPatches # must always be defined in bcachefs' all-packages.nix entry because it's also a top-level attribute supplied by callPackage
, argsOverride ? {} , argsOverride ? {}
, ... , ...

View file

@ -205,16 +205,8 @@ in {
linux_testing_bcachefs = callPackage ../os-specific/linux/kernel/linux-testing-bcachefs.nix { linux_testing_bcachefs = callPackage ../os-specific/linux/kernel/linux-testing-bcachefs.nix {
# Pinned on the last version which Kent's commits can be cleany rebased up. # Pinned on the last version which Kent's commits can be cleany rebased up.
kernel = buildLinux rec { kernel = linux_6_4;
version = "6.1.3"; kernelPatches = linux_6_4.kernelPatches;
modDirVersion = lib.versions.pad 3 version;
extraMeta.branch = lib.versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
hash = "sha256-bcia56dRPkM8WXxzRu1/9L/RFepDo7XiemvbOMVYAxc=";
};
};
kernelPatches = linux_6_1.kernelPatches;
}; };
linux_hardkernel_4_14 = callPackage ../os-specific/linux/kernel/linux-hardkernel-4.14.nix { linux_hardkernel_4_14 = callPackage ../os-specific/linux/kernel/linux-hardkernel-4.14.nix {