summaryrefslogtreecommitdiff
path: root/drivers/video/console_truetype.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-14 18:10:45 -0700
committerAnatolij Gustschin <agust@denx.de>2016-01-30 10:56:22 +0100
commit7ad4e30decfdc5aed3a1a0ac459ad12dd4d0f6ae (patch)
tree3e06135ba055e98b1302705b12f8d0e3fd933bd9 /drivers/video/console_truetype.c
parentc43c43cd48c49624339a83d5263d0b866818fc9b (diff)
video: Add the Rufscript handwriting font
This can be used when a a friendly 'hand-writing' font is needed. It helps to make the device feel familiar. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/console_truetype.c')
-rw-r--r--drivers/video/console_truetype.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/video/console_truetype.c b/drivers/video/console_truetype.c
index a18611b16c..405e0659f0 100644
--- a/drivers/video/console_truetype.c
+++ b/drivers/video/console_truetype.c
@@ -446,6 +446,7 @@ struct font_info {
FONT_DECL(nimbus_sans_l_regular);
FONT_DECL(ankacoder_c75_r);
+FONT_DECL(rufscript010);
static struct font_info font_table[] = {
#ifdef CONFIG_CONSOLE_TRUETYPE_NIMBUS
@@ -454,6 +455,9 @@ static struct font_info font_table[] = {
#ifdef CONFIG_CONSOLE_TRUETYPE_ANKACODER
FONT_ENTRY(ankacoder_c75_r),
#endif
+#ifdef CONFIG_CONSOLE_TRUETYPE_RUFSCRIPT
+ FONT_ENTRY(rufscript010),
+#endif
{} /* sentinel */
};