Don't build Raspi kernel on CI either

This commit is contained in:
kat witch 2021-11-05 23:55:00 +00:00
parent 6e0a629060
commit 44e0721fcd
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -11,7 +11,7 @@
generic-extlinux-compatible.enable = true;
};
consoleLogLevel = lib.mkDefault 7;
kernelPackages = pkgs.linuxPackages_rpi1;
kernelPackages = mkIf (builtins.getEnv "CI_PLATFORM" == "impure") pkgs.linuxPackages_rpi1;
kernelModules = mkForce [ "loop" "atkbd" ];
initrd = {
includeDefaultModules = false;