Remove aarch64-linux from supported architectures (Fixes #3)

This commit is contained in:
Lan Tian 2025-12-11 18:22:22 -08:00
parent d5c438b0ee
commit 5648c2a74c
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B
3 changed files with 3 additions and 12 deletions

View File

@ -10,11 +10,6 @@ This repo provides the latest kernel version and the latest LTS kernel version:
```bash ```bash
└───packages └───packages
├───aarch64-linux
├───linux-cachyos-latest
├───linux-cachyos-latest-lto
├───linux-cachyos-lts
└───linux-cachyos-lts-lto
└───x86_64-linux └───x86_64-linux
├───linux-cachyos-latest ├───linux-cachyos-latest
├───linux-cachyos-latest-lto ├───linux-cachyos-latest-lto

View File

@ -51,10 +51,7 @@
}; };
in in
rec { rec {
systems = [ systems = [ "x86_64-linux" ];
"x86_64-linux"
"aarch64-linux"
];
perSystem = perSystem =
{ {

View File

@ -51,9 +51,7 @@ lib.makeOverridable (
] ]
++ patches; ++ patches;
postPatch = '' postPatch = ''
for DIR in arch/*/configs; do install -Dm644 ${cachyosConfigFile} arch/x86/configs/cachyos_defconfig
install -Dm644 ${cachyosConfigFile} $DIR/cachyos_defconfig
done
'' ''
+ postPatch; + postPatch;
dontConfigure = true; dontConfigure = true;
@ -112,6 +110,7 @@ lib.makeOverridable (
extraMeta = { extraMeta = {
description = "Linux CachyOS Kernel" + lib.optionalString lto " with Clang+ThinLTO"; description = "Linux CachyOS Kernel" + lib.optionalString lto " with Clang+ThinLTO";
broken = !stdenv.isx86_64;
} }
// (args.extraMeta or { }); // (args.extraMeta or { });