diff options
author | Simon Glass | 2016-10-17 20:12:44 -0600 |
---|---|---|
committer | Tom Rini | 2016-10-23 18:33:41 -0400 |
commit | 002f967c5010df69eb9a9a5e21132bb885ca8d02 (patch) | |
tree | 969d721cabad95f896ecd56117c23dbf762aa8bb /drivers/video/Kconfig | |
parent | cfa307f839f59f27b6fd1e80f3686e53b457f8dc (diff) |
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/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index f43053fbf61..39992466495 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 |