diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-20 18:10:33 -0700 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2020-01-02 16:25:25 +0100 |
commit | 512563ba0b97ab3546d7c43211d158f1f50f38ad (patch) | |
tree | 5051cf4b4cf0a879044ba85e7ed25ec0895d1a5c /drivers/video/Kconfig | |
parent | 6cb87cbb1475f668689f95911d1521ee6ba7f55c (diff) | |
download | u-boot-512563ba0b97ab3546d7c43211d158f1f50f38ad.zip u-boot-512563ba0b97ab3546d7c43211d158f1f50f38ad.tar.gz u-boot-512563ba0b97ab3546d7c43211d158f1f50f38ad.tar.bz2 |
video: x86: Enable 32-bit graphics by default
Most x86 boards that use video make use of 32bpp graphics. Enable this by
default. This fixes missing graphics output on some x86 boards.
Also remove the unnecessary 'default n' while we are here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 4cde0ac..50ab365 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -38,7 +38,6 @@ config BACKLIGHT_GPIO config VIDEO_BPP8 bool "Support 8-bit-per-pixel displays" depends on DM_VIDEO - default n help Support drawing text and bitmaps onto a 8-bit-per-pixel display. Enabling this will include code to support this display. Without @@ -48,7 +47,6 @@ config VIDEO_BPP8 config VIDEO_BPP16 bool "Support 16-bit-per-pixel displays" depends on DM_VIDEO - default n help Support drawing text and bitmaps onto a 16-bit-per-pixel display. Enabling this will include code to support this display. Without @@ -58,7 +56,7 @@ config VIDEO_BPP16 config VIDEO_BPP32 bool "Support 32-bit-per-pixel displays" depends on DM_VIDEO - default n + default y if X86 help Support drawing text and bitmaps onto a 32-bit-per-pixel display. Enabling this will include code to support this display. Without @@ -68,7 +66,6 @@ config VIDEO_BPP32 config VIDEO_ANSI bool "Support ANSI escape sequences in video console" depends on DM_VIDEO - default n help Enable ANSI escape sequence decoding for a more fully functional console. |