aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/video-uclass.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-04-15 07:30:07 -0400
committerTom Rini <trini@konsulko.com>2019-04-15 07:30:07 -0400
commit939803e1303f4329896a566883593325c6d75057 (patch)
tree3246d2d14bb8c3390a50aef6ba1cb9a40d45abf6 /drivers/video/video-uclass.c
parent216800acf1fbf9f498455bf3c92d4513d9a4c681 (diff)
parent7b64a70a3a0113f9cd5356b3260d4740edb03265 (diff)
downloadu-boot-939803e1303f4329896a566883593325c6d75057.zip
u-boot-939803e1303f4329896a566883593325c6d75057.tar.gz
u-boot-939803e1303f4329896a566883593325c6d75057.tar.bz2
Merge tag 'video-for-2019.07-rc1' of git://git.denx.de/u-boot-video
- optional backlight PWM polarity config via polarity cell - bug fix for ASCII characters > 127 - ANSI sequence handling extensions (implement clear line, reverse video and relative cursor movement commands) - preparation for doing character set translations - left/right and up/down arrow keys translation to ANSI control sequences for cursor movement to fix selection with an USB keyboard in bootmenu - CONFIG_SYS_WHITE_ON_BLACK font scheme configuration for sunxi boards
Diffstat (limited to 'drivers/video/video-uclass.c')
-rw-r--r--drivers/video/video-uclass.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c
index f307cf2..14aac88 100644
--- a/drivers/video/video-uclass.c
+++ b/drivers/video/video-uclass.c
@@ -136,6 +136,7 @@ void video_set_default_colors(struct udevice *dev, bool invert)
back = temp;
}
priv->fg_col_idx = fore;
+ priv->bg_col_idx = back;
priv->colour_fg = vid_console_color(priv, fore);
priv->colour_bg = vid_console_color(priv, back);
}