2
0

kludge: force gcc 13 for kernel builds

we can get rid of this when we upgrade devices from kernel 5.x to 6.x
(which clearly we also need to do)
This commit is contained in:
2026-03-07 22:27:12 +00:00
parent 9f3c8f7cbd
commit f15ffaeac2
+2 -1
View File
@@ -1,5 +1,5 @@
{
stdenv,
gcc13Stdenv,
buildPackages,
writeText,
lib,
@@ -11,6 +11,7 @@
targets ? [ "vmlinux" ],
}:
let
stdenv = gcc13Stdenv;
writeConfig = import ./write-kconfig.nix { inherit lib writeText; };
kconfigFile = writeConfig "kconfig" config;
arch = stdenv.hostPlatform.linuxArch;