summaryrefslogtreecommitdiff
path: root/drivers/video/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-10-18 02:12:44 (GMT)
committerTom Rini <trini@konsulko.com>2016-10-23 22:33:41 (GMT)
commit002f967c5010df69eb9a9a5e21132bb885ca8d02 (patch)
tree969d721cabad95f896ecd56117c23dbf762aa8bb /drivers/video/Kconfig
parentcfa307f839f59f27b6fd1e80f3686e53b457f8dc (diff)
downloadu-boot-002f967c5010df69eb9a9a5e21132bb885ca8d02.tar.xz
Convert CONFIG_SYS_CONSOLE_BG_COL et al to Kconfig
This converts the following to Kconfig: CONFIG_SYS_CONSOLE_BG_COL CONFIG_SYS_CONSOLE_FG_COL Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r--drivers/video/Kconfig22
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index f43053f..3999246 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -520,6 +520,28 @@ config VIDEO_CT69000
- "videomode=bootargs" all the video parameters are parsed
from the bootargs. (See drivers/video/videomodes.c)
+config SYS_CONSOLE_BG_COL
+ hex "Background colour"
+ depends on CFB_CONSOLE || VIDEO_CT69000
+ default 0x00
+ help
+ Defines the background colour for the console. The value is from
+ 0x00 to 0xff and the meaning depends on the graphics card.
+ Typically, 0x00 means black and 0xff means white. Do not set
+ the background and foreground to the same colour or you will see
+ nothing.
+
+config SYS_CONSOLE_FG_COL
+ hex "Foreground colour"
+ depends on CFB_CONSOLE || VIDEO_CT69000
+ default 0xa0
+ help
+ Defines the foreground colour for the console. The value is from
+ 0x00 to 0xff and the meaning depends on the graphics card.
+ Typically, 0x00 means black and 0xff means white. Do not set
+ the background and foreground to the same colour or you will see
+ nothing.
+
config LCD
bool "Enable legacy LCD support"
help