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
└───packages
├───aarch64-linux
├───linux-cachyos-latest
├───linux-cachyos-latest-lto
├───linux-cachyos-lts
└───linux-cachyos-lts-lto
└───x86_64-linux
├───linux-cachyos-latest
├───linux-cachyos-latest-lto

View File

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

View File

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