linux_testing-bcachefs: 2021-11-06 -> 2021-12-26
This commit is contained in:
parent
013cde1d9d
commit
40f0507288
1 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
||||||
{ lib
|
{ lib
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, kernel
|
, kernel
|
||||||
, date ? "2021-11-06"
|
, date ? "2021-12-26"
|
||||||
, commit ? "10669a2c540de3276c8d2fc0e43be62f2886f377"
|
, commit ? "b034dfb24fece43a7677b9a29781495aeb62767f"
|
||||||
, diffHash ? "1rn72wd8jg919j74x8banl70b2bdd6r9fgvnw693j20dq96j5cnw"
|
, diffHash ? "0m7qrnfrcx3dki9lmsq3jk3mcrfm99djh83gwwjh401ql0cycx5p"
|
||||||
, 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 ? {}
|
||||||
, ...
|
, ...
|
||||||
|
@ -13,6 +13,7 @@
|
||||||
(kernel.override ( args // {
|
(kernel.override ( args // {
|
||||||
argsOverride = {
|
argsOverride = {
|
||||||
version = "${kernel.version}-bcachefs-unstable-${date}";
|
version = "${kernel.version}-bcachefs-unstable-${date}";
|
||||||
|
|
||||||
extraMeta = {
|
extraMeta = {
|
||||||
branch = "master";
|
branch = "master";
|
||||||
maintainers = with lib.maintainers; [ davidak chiiruno ];
|
maintainers = with lib.maintainers; [ davidak chiiruno ];
|
||||||
|
@ -21,12 +22,13 @@
|
||||||
|
|
||||||
kernelPatches = [ {
|
kernelPatches = [ {
|
||||||
name = "bcachefs-${commit}";
|
name = "bcachefs-${commit}";
|
||||||
|
|
||||||
patch = fetchpatch {
|
patch = fetchpatch {
|
||||||
name = "bcachefs-${commit}.diff";
|
name = "bcachefs-${commit}.diff";
|
||||||
url = "https://evilpiepirate.org/git/bcachefs.git/rawdiff/?id=${commit}&id2=v${lib.versions.majorMinor kernel.version}";
|
url = "https://evilpiepirate.org/git/bcachefs.git/rawdiff/?id=${commit}&id2=v${lib.versions.majorMinor kernel.version}";
|
||||||
sha256 = diffHash;
|
sha256 = diffHash;
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfig = "BCACHEFS_FS m";
|
extraConfig = "BCACHEFS_FS m";
|
||||||
} ] ++ kernelPatches;
|
} ] ++ kernelPatches;
|
||||||
|
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue