limine: simplify x86 only features logic

my ass WASN'T listening at school
This commit is contained in:
nat
2025-02-22 15:31:14 +01:00
parent 21102c07a5
commit 9601183c40
+2 -2
View File
@@ -55,9 +55,9 @@ let
];
in
assert lib.assertMsg (!(biosSupport && !hasI686)) "BIOS builds are possible only for x86";
assert lib.assertMsg (!biosSupport || hasI686) "BIOS builds are possible only for x86";
assert lib.assertMsg (!(pxeSupport && !hasI686)) "PXE builds are possible only for x86";
assert lib.assertMsg (!pxeSupport || hasI686) "PXE builds are possible only for x86";
# The output of the derivation is a tool to create bootable images using Limine
# as bootloader for various platforms and corresponding binary and helper files.