diff options
author | Soeren Moch <smoch@web.de> | 2020-07-30 14:11:57 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2020-08-03 23:36:50 +0200 |
commit | 645d39aea367064868dcdd30c411806f4403b67b (patch) | |
tree | 6af0d8f0e38538086dbd3d66e214d91be42f0099 | |
parent | 68941e3b2c217907a49aa66af8bb65729b913397 (diff) | |
download | u-boot-645d39aea367064868dcdd30c411806f4403b67b.tar.gz |
board: tbs2910: Fix video output with existing environments
Migration to DM_VIDEO changed the output device name (in stout, stderr)
from 'vga' to 'vidconsole'. This also was adapted in the default environment.
However, existing user defined environments still use 'vga'. Enable this
workaround to map the 'vga' name to 'vidconsole'. So we get HDMI video
output also with existing legacy environments.
Signed-off-by: Soeren Moch <smoch@web.de>
-rw-r--r-- | configs/tbs2910_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig index eb290554d6..f50a9952f4 100644 --- a/configs/tbs2910_defconfig +++ b/configs/tbs2910_defconfig @@ -101,6 +101,7 @@ CONFIG_DM_VIDEO=y # CONFIG_VIDEO_ANSI is not set CONFIG_SYS_WHITE_ON_BLACK=y # CONFIG_PANEL is not set +CONFIG_VIDCONSOLE_AS_LCD=y CONFIG_I2C_EDID=y CONFIG_VIDEO_IPUV3=y # CONFIG_GZIP is not set |