diff --git a/kernel.nix b/kernel.nix index a637657..4529c42 100644 --- a/kernel.nix +++ b/kernel.nix @@ -1,4 +1,4 @@ -{ lib, buildLinux, linux_5_9, runCommandLocal, runCommand, fetchgit, ... }: +{ lib, buildLinux, linux_5_10, runCommandLocal, runCommand, fetchgit, ... }: let armbian = fetchgit { url = https://github.com/armbian/build.git; @@ -21,7 +21,7 @@ let done ''; src = runCommand "linux-rockchip64" {} '' - unpackFile ${linux_5_9.src} + unpackFile ${linux_5_10.src} cd linux*/ for f in ${armbian}/patch/kernel/rockchip64-current/* ; do if [[ "$f" =~ ${patchSkipPattern} ]] ; then @@ -36,7 +36,7 @@ let ''; in buildLinux { inherit src; - inherit (linux_5_9) version modDirVersion; + inherit (linux_5_10) version modDirVersion; autoModules = false; kernelPatches = [ #{ name = "rockchip64-current"; patch = patch; }