diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-17 20:12:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-23 18:33:52 -0400 |
commit | 0872d443aa75c86c0ce0c3008a0ac0e0889a9821 (patch) | |
tree | 085c9c4a08245c799f55890eb146a024f99ef57c /drivers | |
parent | a4206575c8e0108faed0383c08b743b50e5562f5 (diff) | |
download | u-boot-0872d443aa75c86c0ce0c3008a0ac0e0889a9821.tar.gz |
Convert CONFIG_VIDEO_SW_CURSOR to Kconfig
This converts the following to Kconfig:
CONFIG_VIDEO_SW_CURSOR
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
[trini: Re-convert, find all the cases where this is off]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/Kconfig | 10 | ||||
-rw-r--r-- | drivers/video/cfb_console.c | 6 |
2 files changed, 10 insertions, 6 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index a842da6f11..6492366471 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -503,6 +503,16 @@ config VGA_AS_SINGLE_DEVICE may be used if you have no keyboard device, or more than one (USB Keyboard, AT Keyboard). +config VIDEO_SW_CURSOR + bool "Enable a software cursor" + depends on CFB_CONSOLE + default y if CFB_CONSOLE + help + This draws a cursor after the last character. No blinking is + provided. This makes it possible to see the current cursor + position when entering text on the console. It is recommended to + enable this. + config VIDEO_CT69000 bool "Enable Chips & Technologies 69000 video driver" depends on VIDEO diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index a99fc00c4a..56d3c15f8e 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -141,12 +141,6 @@ #include <splash.h> #endif -/* - * Cursor definition: - * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No - * blinking is provided. Uses the macros CURSOR_SET - * and CURSOR_OFF. - */ #if !defined(CONFIG_VIDEO_SW_CURSOR) /* no Cursor defined */ #define CURSOR_ON |