mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* Framebuffer console patches
@ 2015-07-16  7:31 Sascha Hauer
  2015-07-16  7:31 ` [PATCH 01/12] graphic_utils: Add a common namespace to functions Sascha Hauer
                   ` (11 more replies)
  0 siblings, 12 replies; 14+ messages in thread
From: Sascha Hauer @ 2015-07-16  7:31 UTC (permalink / raw)
  To: Barebox List

This is the current state of the framebuffer console patches that
went back and forth between Antony and me.

The framebuffer console has different compile and runtime selectable
fonts, color support and supports enough escape sequences to show the
console and the editor properly.

Thank you Antony for starting this and for your effort. Framebuffer console
support has been on my wishlist for quite some time now.

Sascha

----------------------------------------------------------------
Antony Pavlov (3):
      import lib/fonts framework from linux kernel
      lib/fonts: add "MINI4x6" font
      video: implement framebuffer console

Sascha Hauer (9):
      graphic_utils: Add a common namespace to functions
      gui: Fix typo in function name
      graphics_utils: Add function to invert an area
      graphics_utils: Export get_pixel
      graphics_utils: add function to create pixel from rgb triplet
      fonts: Add 7x14 font
      fb: Add fb_enable/disable functions
      fb: sdl: create graphics window on enabling
      graphics_utils: Let fb_open allocate the screen

 Documentation/user/framebuffer.rst |    8 +
 commands/splash.c                  |   27 +-
 drivers/video/Kconfig              |    6 +
 drivers/video/Makefile             |    1 +
 drivers/video/fb.c                 |   32 +-
 drivers/video/fbconsole.c          |  439 ++++
 drivers/video/sdl.c                |   16 +-
 include/fb.h                       |    5 +
 include/gui/graphic_utils.h        |   19 +-
 include/gui/gui.h                  |    4 +-
 include/linux/font.h               |   34 +
 lib/Kconfig                        |    2 +
 lib/Makefile                       |    1 +
 lib/fonts/Kconfig                  |   29 +
 lib/fonts/Makefile                 |   11 +
 lib/fonts/font_7x14.c              | 4116 ++++++++++++++++++++++++++++++++
 lib/fonts/font_8x16.c              | 4630 ++++++++++++++++++++++++++++++++++++
 lib/fonts/font_mini_4x6.c          | 2155 +++++++++++++++++
 lib/fonts/fonts.c                  |   75 +
 lib/gui/bmp.c                      |   18 +-
 lib/gui/graphic_utils.c            |  165 +-
 lib/gui/png.c                      |    4 +-
 22 files changed, 11706 insertions(+), 91 deletions(-)
 create mode 100644 drivers/video/fbconsole.c
 create mode 100644 include/linux/font.h
 create mode 100644 lib/fonts/Kconfig
 create mode 100644 lib/fonts/Makefile
 create mode 100644 lib/fonts/font_7x14.c
 create mode 100644 lib/fonts/font_8x16.c
 create mode 100644 lib/fonts/font_mini_4x6.c
 create mode 100644 lib/fonts/fonts.c

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-07-16  8:36 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-16  7:31 Framebuffer console patches Sascha Hauer
2015-07-16  7:31 ` [PATCH 01/12] graphic_utils: Add a common namespace to functions Sascha Hauer
2015-07-16  7:31 ` [PATCH 02/12] gui: Fix typo in function name Sascha Hauer
2015-07-16  7:31 ` [PATCH 03/12] graphics_utils: Add function to invert an area Sascha Hauer
2015-07-16  7:31 ` [PATCH 04/12] graphics_utils: Export get_pixel Sascha Hauer
2015-07-16  7:31 ` [PATCH 05/12] graphics_utils: add function to create pixel from rgb triplet Sascha Hauer
2015-07-16  7:31 ` [PATCH 06/12] import lib/fonts framework from linux kernel Sascha Hauer
2015-07-16  7:31 ` [PATCH 07/12] lib/fonts: add "MINI4x6" font Sascha Hauer
2015-07-16  7:31 ` [PATCH 08/12] fonts: Add 7x14 font Sascha Hauer
2015-07-16  7:31 ` [PATCH 09/12] fb: Add fb_enable/disable functions Sascha Hauer
2015-07-16  7:31 ` [PATCH 10/12] fb: sdl: create graphics window on enabling Sascha Hauer
2015-07-16  7:31 ` [PATCH 11/12] graphics_utils: Let fb_open allocate the screen Sascha Hauer
2015-07-16  7:31 ` [PATCH 12/12] video: implement framebuffer console Sascha Hauer
2015-07-16  8:36   ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox