summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/console.h')
-rw-r--r--src/include/ipxe/console.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/ipxe/console.h b/src/include/ipxe/console.h
index 5ff93884..e2bf4be9 100644
--- a/src/include/ipxe/console.h
+++ b/src/include/ipxe/console.h
@@ -120,9 +120,12 @@ struct console_driver {
/** Text-based user interface */
#define CONSOLE_USAGE_TUI 0x0004
+/** Log messages */
+#define CONSOLE_USAGE_LOG 0x0008
+
/** All console usages */
-#define CONSOLE_USAGE_ALL \
- ( CONSOLE_USAGE_STDOUT | CONSOLE_USAGE_DEBUG | CONSOLE_USAGE_TUI )
+#define CONSOLE_USAGE_ALL ( CONSOLE_USAGE_STDOUT | CONSOLE_USAGE_DEBUG | \
+ CONSOLE_USAGE_TUI | CONSOLE_USAGE_LOG )
/** @} */