diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-18 20:08:22 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-18 20:20:02 (EDT) |
commit | 51af094f5a7b4ab7811a5f249f9689637ac813b3 (patch) | |
tree | 3b0f392cc81e3755d6b472bb6c94f6382869e56d /src | |
parent | 6b53901ae1d40940bf2ba9ffcfbd5fc9b61c381c (diff) |
lib/fonts/*.c: Add fonts from upstream Linux
The macros, declarations, and array are all sorted according to the
array in Linux's lib/fonts/fonts.c, since that affects picking a default
font and finding a font by name (if there were conflicts, which there
aren't).
Diffstat (limited to 'src')
-rw-r--r-- | src/font.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -43,6 +43,17 @@ struct font { }; static const struct font_desc *fonts[] = { + &font_vga_8x8, + &font_vga_8x16, + &font_vga_6x11, + &font_7x14, + &font_sun_8x16, + &font_sun_12x22, + &font_10x18, + &font_acorn_8x8, + &font_pearl_8x8, + &font_mini_4x6, + &font_6x10, &font_mplus_1mn_medium_10x14, &font_mplus_1mn_regular_12x17, &font_mplus_1mn_regular_14x19, |