rework parsing of interupt-map in interrupt node.
[lunaix-os.git] / lunaix-os / hal / char / LConfig
index 1b5ead4d72c1cd330781b3ab57e7b43b5db825ef..8e662fa5be4494450cfc8e0ca6e5633787ae6576 100644 (file)
@@ -1,7 +1,25 @@
 include("uart")
 
-@Collection
+@Collection("Character Devices")
 def char_device():
     """ Controlling support of character devices """
 
     add_to_collection(hal)
+
+    @Term("VGA 80x25 text-mode console")
+    def vga_console():
+        """ Enable VGA console device (text mode only) """
+
+        type(bool)
+        default(True)
+
+    @Term("VGA character game device")
+    def chargame_console():
+        """ 
+            Enable VGA Charactor Game console device (text mode only) 
+
+            You normally don't need to include this, unless you want some user space fun ;)
+        """
+
+        type(bool)
+        default(False)
\ No newline at end of file