mirror of
https://github.com/xddxdd/nix-cachyos-kernel.git
synced 2026-07-03 19:18:07 +02:00
Remove aarch64-linux from supported architectures (Fixes #3)
This commit is contained in:
parent
d5c438b0ee
commit
5648c2a74c
@ -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
|
||||
|
||||
@ -51,10 +51,7 @@
|
||||
};
|
||||
in
|
||||
rec {
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
];
|
||||
systems = [ "x86_64-linux" ];
|
||||
|
||||
perSystem =
|
||||
{
|
||||
|
||||
@ -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 { });
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user