From c0603b98d48283f5f7e240c1fe71b291e7c761b1 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 14 Jan 2016 18:10:46 -0700 Subject: video: Add the Cantoraone decorative font This font is a little more ornate than normal. Example uses are on security screens where a feeling of formality is required. Signed-off-by: Simon Glass --- drivers/video/console_truetype.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'drivers/video/console_truetype.c') diff --git a/drivers/video/console_truetype.c b/drivers/video/console_truetype.c index 405e065..c249f04 100644 --- a/drivers/video/console_truetype.c +++ b/drivers/video/console_truetype.c @@ -447,6 +447,7 @@ struct font_info { FONT_DECL(nimbus_sans_l_regular); FONT_DECL(ankacoder_c75_r); FONT_DECL(rufscript010); +FONT_DECL(cantoraone_regular); static struct font_info font_table[] = { #ifdef CONFIG_CONSOLE_TRUETYPE_NIMBUS @@ -458,6 +459,9 @@ static struct font_info font_table[] = { #ifdef CONFIG_CONSOLE_TRUETYPE_RUFSCRIPT FONT_ENTRY(rufscript010), #endif +#ifdef CONFIG_CONSOLE_TRUETYPE_CANTORAONE + FONT_ENTRY(cantoraone_regular), +#endif {} /* sentinel */ }; -- cgit v1.1