From 64269645d4ba9822d0d9ffe157b71c98b7eedd93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 6 Nov 2025 11:14:48 +0100 Subject: [PATCH] star64: add missing names to kernel patches --- pine64/star64/linux-5.15.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pine64/star64/linux-5.15.nix b/pine64/star64/linux-5.15.nix index 39d8cedc..0eb664bc 100644 --- a/pine64/star64/linux-5.15.nix +++ b/pine64/star64/linux-5.15.nix @@ -32,6 +32,7 @@ let defconfig = "pine64_star64_defconfig"; kernelPatches = [ { + name = "keys-dh-fix"; patch = fetchpatch { url = "https://github.com/torvalds/linux/commit/215bebc8c6ac438c382a6a56bd2764a2d4e1da72.diff"; hash = "sha256-1ZqmVOkgcDBRkHvVRPH8I5G1STIS1R/l/63PzQQ0z0I="; @@ -39,12 +40,16 @@ let }; } { + name = "starfive-vin-sensor-fix"; patch = fetchpatch { url = "https://github.com/starfive-tech/linux/pull/108/commits/9ae8cb751c4d1fd2146b279a8e67887590e9d07a.diff"; hash = "sha256-EY0lno+HkY5mradBUPII3qqu0xh+BVQRzveCQcaht0M="; }; } - { patch = ./irq-desc-to-data.patch; } + { + name = "irq-desc-to-data"; + patch = ./irq-desc-to-data.patch; + } ] ++ kernelPatches;