Unverified Commit 9601183c authored by nat's avatar nat
Browse files

limine: simplify x86 only features logic

my ass WASN'T listening at school
parent 21102c07
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.