Add QWord support to acpigen.
[coreboot.git] / src / console / Config.lb
index 39fcd23fa55e3ff6a82d1171a2b10853d530c31e..7a1672e4941dd414e86529e4c7a0e088ba47285a 100644 (file)
@@ -1,26 +1,35 @@
-uses CONFIG_CONSOLE_SERIAL8250 CONFIG_CONSOLE_VGA CONFIG_CONSOLE_BTEXT
-uses CONFIG_CONSOLE_LOGBUF CONFIG_CONSOLE_SROM
+uses CONFIG_CONSOLE_SERIAL8250
+uses CONFIG_USBDEBUG_DIRECT
+uses CONFIG_CONSOLE_VGA
+uses CONFIG_CONSOLE_BTEXT
+uses CONFIG_CONSOLE_LOGBUF
 uses CONFIG_USE_INIT
+uses CONFIG_USE_PRINTK_IN_CAR
 
 object printk.o
 if CONFIG_CONSOLE_SERIAL8250
-  driver uart8250_console.o
+       driver uart8250_console.o
+end
+if CONFIG_USBDEBUG_DIRECT
+       driver usbdebug_direct_console.o
 end
 if CONFIG_CONSOLE_VGA
-  driver vga_console.o
+       driver vga_console.o
 end
 if CONFIG_CONSOLE_BTEXT
-  driver btext_console.o
+       driver btext_console.o
+       driver font-8x16.o
 end
 if CONFIG_CONSOLE_LOGBUF
-  driver logbuf_console.o
-end
-if CONFIG_CONSOLE_SROM
-  driver srom_console.o
+       driver logbuf_console.o
 end
+
 object console.o
+object vtxprintf.o
 object vsprintf.o
 
 if CONFIG_USE_INIT
-       initobject vsprintf.o
+#      if CONFIG_USE_PRINTK_IN_CAR
+       initobject vtxprintf.o
+#      end
 end