mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
linuxPackages_4_{19,20}: works around bug with overlayfs.
See: https://github.com/NixOS/nixpkgs/issues/48828#issuecomment-445208626
This commit is contained in:
parent
9d3fbbeda5
commit
de86af48fa
2 changed files with 12 additions and 0 deletions
|
@ -58,4 +58,14 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
# Reverts a change related to the overlayfs overhaul in 4.19
|
||||
# https://github.com/NixOS/nixpkgs/issues/48828#issuecomment-445208626
|
||||
revert-vfs-dont-open-real = rec {
|
||||
name = "revert-vfs-dont-open-real";
|
||||
patch = fetchpatch {
|
||||
name = name + ".patch";
|
||||
url = https://github.com/samueldr/linux/commit/ee23fa215caaa8102f4ab411d39fcad5858147f2.patch;
|
||||
sha256 = "0bp4jryihg1y2sl8zlj6w7vvnxj0kmb6xdy42hpvdv43kb6ngiaq";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -14560,6 +14560,7 @@ in
|
|||
# when adding a new linux version
|
||||
# kernelPatches.cpu-cgroup-v2."4.11"
|
||||
kernelPatches.modinst_arg_list_too_long
|
||||
kernelPatches.revert-vfs-dont-open-real
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -14570,6 +14571,7 @@ in
|
|||
# when adding a new linux version
|
||||
# kernelPatches.cpu-cgroup-v2."4.11"
|
||||
kernelPatches.modinst_arg_list_too_long
|
||||
kernelPatches.revert-vfs-dont-open-real
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue