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
|
```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
|
||||||
|
|||||||
@ -51,10 +51,7 @@
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
systems = [
|
systems = [ "x86_64-linux" ];
|
||||||
"x86_64-linux"
|
|
||||||
"aarch64-linux"
|
|
||||||
];
|
|
||||||
|
|
||||||
perSystem =
|
perSystem =
|
||||||
{
|
{
|
||||||
|
|||||||
@ -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 { });
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user