X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/d15268ba6eadf89a38087995ff407f50418485fb..refs/heads/eme/build-tools:/lunaix-os/arch/x86/LConfig diff --git a/lunaix-os/arch/x86/LConfig b/lunaix-os/arch/x86/LConfig index e5f0cd4..6720ccd 100644 --- a/lunaix-os/arch/x86/LConfig +++ b/lunaix-os/arch/x86/LConfig @@ -2,15 +2,15 @@ @(parent := architecture_support) def x86_configurations(): - require(arch_x86) + require (arch_x86) @flag def x86_bl_mb() -> bool: - return x86_bl.val == "mb" + when (x86_bl is "mb") @flag def x86_bl_mb2() -> bool: - return x86_bl.val == "mb2" + when (x86_bl is "mb2") @"Use SSE2/3/4 extension" def x86_enable_sse_feature() -> bool: @@ -18,7 +18,7 @@ def x86_configurations(): Config whether to allow using SSE feature for certain optimization """ - + return False @"Bootloader Model"