diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ipxe/console.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/ipxe/console.h b/src/include/ipxe/console.h index f70dd714a..5ff93884d 100644 --- a/src/include/ipxe/console.h +++ b/src/include/ipxe/console.h @@ -117,8 +117,12 @@ struct console_driver { /** Debug messages */ #define CONSOLE_USAGE_DEBUG 0x0002 +/** Text-based user interface */ +#define CONSOLE_USAGE_TUI 0x0004 + /** All console usages */ -#define CONSOLE_USAGE_ALL ( CONSOLE_USAGE_STDOUT | CONSOLE_USAGE_DEBUG ) +#define CONSOLE_USAGE_ALL \ + ( CONSOLE_USAGE_STDOUT | CONSOLE_USAGE_DEBUG | CONSOLE_USAGE_TUI ) /** @} */ |
