summaryrefslogtreecommitdiff
path: root/drivers/video/console_truetype.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-15 01:10:44 (GMT)
committerAnatolij Gustschin <agust@denx.de>2016-01-30 09:56:09 (GMT)
commitc43c43cd48c49624339a83d5263d0b866818fc9b (patch)
treefcd75bf5ab6a970eaab8fdc848db3158c422221b /drivers/video/console_truetype.c
parent84b4791ada7754b65fd200002f92ac8684c2b5ec (diff)
downloadu-boot-fsl-qoriq-c43c43cd48c49624339a83d5263d0b866818fc9b.tar.xz
video: Add the AnkaCoder mono-spaced font
This can be used when a mono-space font is needed, but the console font is too small (such as with high-DPI displays). 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 46c5205..a18611b 100644
--- a/drivers/video/console_truetype.c
+++ b/drivers/video/console_truetype.c
@@ -445,11 +445,15 @@ struct font_info {
}
FONT_DECL(nimbus_sans_l_regular);
+FONT_DECL(ankacoder_c75_r);
static struct font_info font_table[] = {
#ifdef CONFIG_CONSOLE_TRUETYPE_NIMBUS
FONT_ENTRY(nimbus_sans_l_regular),
#endif
+#ifdef CONFIG_CONSOLE_TRUETYPE_ANKACODER
+ FONT_ENTRY(ankacoder_c75_r),
+#endif
{} /* sentinel */
};