mnt-reform: Add name parameter to kernel patches

This commit is contained in:
Jakob Leifhelm 2025-11-09 11:24:47 +01:00
parent a31d53a0b2
commit 6ae02e4ebd
No known key found for this signature in database
GPG key ID: 6817AA0238100822

View file

@ -30,7 +30,10 @@ let
};
kernelPatches =
(map (patch: { patch = "${reformDebianPackages}/${patch}"; }) (import ./kernelPatches.nix))
(map (patch: {
name = patch;
patch = "${reformDebianPackages}/${patch}";
}) (import ./kernelPatches.nix))
++ [
{
name = "reform-dts";