summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbconsole.c
Commit message (Collapse)AuthorAgeFilesLines
* font: fbconsole: add custom font supportsDu Huanpeng2015-11-231-2/+3
| | | | | Signed-off-by: Du Huanpeng <u74147@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fbconsole: move font variable into struct font_descDu Huanpeng2015-11-091-19/+17
| | | | | | | | replace font related variables with a struct pointer, font_desc. Signed-off-by: Du Huanpeng <u74147@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fbconsole: no need to copy extra lineAleksey Kuleshov2015-11-061-1/+2
| | | | | Signed-off-by: Aleksey Kuleshov <rndfax@yandex.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fb: fbconsole: Add missing blitsSascha Hauer2015-08-201-1/+8
| | | | | | | When using offscreen rendering we need some more points where we blit the offscreen buffer to the screen. Add them. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fb: fbconsole: print cursor after clearing the screenSascha Hauer2015-08-201-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gui: Use fb provided shadowfb for offscreen renderingSascha Hauer2015-08-201-1/+1
| | | | | | | The fb core now has builtin support for offscreen rendering, use this and drop offscreen handling in the gui code. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* video: fbconsole: do not enter when we are already in fbconsoleSascha Hauer2015-08-201-0/+6
| | | | | | | Make it possible to issue console messages from inside the fbconsole code without entering the fbconsole again. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* video: implement framebuffer consoleAntony Pavlov2015-07-201-0/+440
This patch realizes framebuffer console support for barebox. It supports colors and enough escape sequences to show the barebox console and editor properly. fbconsole mini-HOWTO ==================== 1. compile sandbox barebox with CONFIG_VIDEO=y CONFIG_FRAMEBUFFER_CONSOLE=y CONFIG_DRIVER_VIDEO_SDL=y 2. run barebox 3. test fbconsole fbconsole0.active=oe Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>