mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: Framebuffer console patches
Date: Thu, 16 Jul 2015 09:31:40 +0200	[thread overview]
Message-ID: <1437031912-24754-1-git-send-email-s.hauer@pengutronix.de> (raw)

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

             reply	other threads:[~2015-07-16  7:32 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-16  7:31 Sascha Hauer [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1437031912-24754-1-git-send-email-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox