summaryrefslogtreecommitdiffstats
path: root/lib/fonts
Commit message (Collapse)AuthorAgeFilesLines
* Convert latin1 files to utf-8Uwe Kleine-König2019-10-143-384/+384
| | | | | | | | | | | The source files are parsed by $(make docs). Currently this is done using python2 (actually 'python' which is still python2 on most machines). When using python3 however (which has a stricter encoding handling) it is easier if all input is in utf-8 encoding. So convert the few remaining latin1 encoded files to utf-8. This only affects code comments. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
* lib/fonts: add 6x8 fontSven Schneider2017-06-233-1/+2589
| | | | | | | | | This font is derived from linux lib/fonts/font_6x10.c. Signed-off-by: Sven Schneider <s.schneider@arkona-technologies.de> [rhi: fix indentation for block /* 36 0x28 '$' */] Signed-off-by: Roland Hieber <r.hieber@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* lib/fonts: add VGA8x8 fontBastian Stender2017-02-243-0/+2592
| | | | | | | | | Ported from Linux v4.10. This font is ideal for displaying a framebuffer console on a small display. Signed-off-by: Bastian Stender <bst@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* font: fbconsole: add custom font supportsDu Huanpeng2015-11-234-0/+79
| | | | | Signed-off-by: Du Huanpeng <u74147@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fbconsole: register fonts dynamicallySascha Hauer2015-11-134-33/+56
| | | | | | | | | | | | | | | Instead of having a fixed array of fonts register the fonts dynamically. This allows easier adding of fonts to the tree since only one file per font has to be added and no other files modified. Currently we have to register the fonts very early before the first framebuffer is registered. This is because of our limited dev_add_param_enum() which wants to know the number of elements when called, so we can't add elements once after we've called dev_add_param_enum(). Maybe a dev_add_param_array() has to be created whithout this limitation, but that's left for a future exercise. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* lib: fix coding styleDu Huanpeng2015-11-091-3/+3
| | | | | Signed-off-by: Du Huanpeng <u74147@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fonts: Add 7x14 fontSascha Hauer2015-07-204-0/+4125
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* lib/fonts: add "MINI4x6" fontAntony Pavlov2015-07-164-0/+2164
| | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* import lib/fonts framework from linux kernelAntony Pavlov2015-07-164-0/+4727
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>