From 84b4791ada7754b65fd200002f92ac8684c2b5ec Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 14 Jan 2016 18:10:43 -0700 Subject: video: Add the Nimbus sans font This provides a good-looking font for user prompts. Signed-off-by: Simon Glass --- drivers/video/fonts/Kconfig | 13 +++++++++++++ drivers/video/fonts/Makefile | 2 ++ drivers/video/fonts/nimbus_sans_l_regular.ttf | Bin 0 -> 61660 bytes 3 files changed, 15 insertions(+) create mode 100644 drivers/video/fonts/nimbus_sans_l_regular.ttf (limited to 'drivers/video/fonts') diff --git a/drivers/video/fonts/Kconfig b/drivers/video/fonts/Kconfig index ad16ce6..ded3e5e 100644 --- a/drivers/video/fonts/Kconfig +++ b/drivers/video/fonts/Kconfig @@ -4,4 +4,17 @@ menu "TrueType Fonts" +config CONSOLE_TRUETYPE_NIMBUS + bool "Nimbus Sans Regular" + depends on CONSOLE_TRUETYPE + help + Nimbus Sans L is a version of Nimbus Sans using Adobe font sources. + It was designed in 1987. A subset of Nimbus Sans L were released + under the GPL. Although the characters are not exactly the same, + Nimbus Sans L has metrics almost identical to Helvetica and Arial. + (From Wikipedia, the free encyclopedia) + From: https://fontlibrary.org/en/font/nimbus-sans-l + License: GNU GPL v3 + http://www.gnu.org/copyleft/gpl.html + endmenu diff --git a/drivers/video/fonts/Makefile b/drivers/video/fonts/Makefile index 6ab4647..68f4c3b 100644 --- a/drivers/video/fonts/Makefile +++ b/drivers/video/fonts/Makefile @@ -4,3 +4,5 @@ # # SPDX-License-Identifier: GPL-2.0+ # + +obj-$(CONFIG_CONSOLE_TRUETYPE_NIMBUS) += nimbus_sans_l_regular.o diff --git a/drivers/video/fonts/nimbus_sans_l_regular.ttf b/drivers/video/fonts/nimbus_sans_l_regular.ttf new file mode 100644 index 0000000..3bd694d Binary files /dev/null and b/drivers/video/fonts/nimbus_sans_l_regular.ttf differ -- cgit v1.1