orangepi5plus: remove some repeats

This commit is contained in:
Motiejus Jakštys 2024-02-29 10:17:06 +02:00
parent 5333b17e06
commit b6724ef10e
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
crossPkgs = pkgs.pkgsCross.aarch64-multiplatform; crossPkgs = pkgs.pkgsCross.aarch64-multiplatform;
in { in {
boot = { boot = {
kernelPackages = crossPkgs.linuxPackagesFor (crossPkgs.buildLinux { kernelPackages = crossPkgs.linuxPackagesFor (crossPkgs.buildLinux rec {
version = "6.8.0-rc1"; version = "6.8.0-rc1";
modDirVersion = "6.8.0-rc1"; modDirVersion = "6.8.0-rc1";
@ -18,8 +18,8 @@ in {
}; };
kernelPatches = [ kernelPatches = [
{ {
name = "orangepi-5-plus-collabora-v6.8.0-rc1"; name = "orangepi-5-plus-collabora-${version}";
patch = ./orangepi5plus/rk3588-v6.8.0-rc1.patch; patch = ./orangepi5plus/rk3588-v${version}.patch;
} }
]; ];