X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/d15268ba6eadf89a38087995ff407f50418485fb..9d4cc53314b8e2a236401733ac6c7093c97d4351:/lunaix-os/hal/LConfig diff --git a/lunaix-os/hal/LConfig b/lunaix-os/hal/LConfig index 26f53b8..5b6a86f 100644 --- a/lunaix-os/hal/LConfig +++ b/lunaix-os/hal/LConfig @@ -16,8 +16,9 @@ def hal(): devicetree might be mandatory and perhaps the only way. """ + require (not arch_x86) - return arch.val not in ["x86_64", "i386"] + return False @"Maximum size of device tree blob (in KiB)" @readonly @@ -25,6 +26,13 @@ def hal(): """ Maximum size for a firmware provided device tree blob """ - require(use_devicetree) + require (use_devicetree) - return 256 \ No newline at end of file + return 256 + + @"Graphic Devices" + def use_graphic_dev() -> int: + """ + Support of graphical devices and display protocol + """ + return False \ No newline at end of file