Revert "disable crossNative"

This reverts commit 776cea6c01.
This commit is contained in:
Motiejus Jakštys 2024-06-05 10:11:53 +03:00
parent 776cea6c01
commit 32dcf4e9dd
1 changed files with 6 additions and 7 deletions

View File

@ -4,16 +4,15 @@
pkgs,
modulesPath,
...
}:
#let
#crossFast = pkgs.crossArm64.pkgsCross.aarch64-multiplatform;
#in
{
}: let
#crossFast = pkgs.crossArm64.pkgsCross.aarch64-multiplatform;
crossNative = pkgs.pkgsCross.aarch64-multiplatform;
in {
mj.skipPerf = true;
boot = {
#kernelPackages = crossNative.linuxPackagesFor (crossFast.buildLinux rec {
kernelPackages = pkgs.linuxPackagesFor (pkgs.buildLinux rec {
kernelPackages = crossNative.linuxPackagesFor (crossNative.buildLinux rec {
version = "6.9.0-rc1";
modDirVersion = "6.9.0-rc1";
@ -60,6 +59,6 @@
inherit config lib pkgs;
};
#uboot = crossFast.callPackage ../../hacks/orangepi5plus/uboot {};
uboot = pkgs.callPackage ../../hacks/orangepi5plus/uboot {};
uboot = crossNative.callPackage ../../hacks/orangepi5plus/uboot {};
};
}