arm64: compile some stuff natively

This commit is contained in:
Motiejus Jakštys 2024-03-07 13:01:59 +02:00
parent e9f3ef3b2b
commit c001078e56
1 changed files with 4 additions and 3 deletions

View File

@ -5,10 +5,11 @@
modulesPath,
...
}: let
crossPkgs = pkgs.crossArm64.pkgsCross.aarch64-multiplatform;
crossFast = pkgs.crossArm64.pkgsCross.aarch64-multiplatform;
crossNative = pkgs.pkgsCross.aarch64-multiplatform;
in {
boot = {
kernelPackages = crossPkgs.linuxPackagesFor (crossPkgs.buildLinux rec {
kernelPackages = crossNative.linuxPackagesFor (crossFast.buildLinux rec {
version = "6.8.0-rc7";
modDirVersion = "6.8.0-rc7";
@ -50,6 +51,6 @@ in {
copyChannel = false;
inherit config lib pkgs;
};
uboot = crossPkgs.callPackage ../../hacks/orangepi5plus/uboot {};
uboot = crossFast.callPackage ../../hacks/orangepi5plus/uboot {};
};
}