shconfig: add `link` command to view the inverse dependency
[lunaix-os.git] / lunaix-os / hal / LConfig
index b2e00fa77c7b659a6147b79aa9dddde55b98658e..5b6a86f72b52c7bcc969b5641bae967009fa0109 100644 (file)
@@ -16,7 +16,7 @@ def hal():
             devicetree might be mandatory and perhaps the only
             way.
         """
-        require(not arch_x86)
+        require (not arch_x86)
 
         return False
 
@@ -26,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