mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-02-04 07:15:01 +00:00
font: add the Fixed 8x16 console font to the kernel.
It's a bit like Terminus, but more rounded and less harsh on the eyes. Ubuntu has shipped it as their default console font for years, before they switched to the "Ubuntu" font. Putting this in the kernel has practically no benefit except to reduce the amount of "glitching" swapping the built-in kernel console font for a new one halfway through boot when you see the kernel output on a screen. Note to gain the benefit of it not swapping the font around again when "consolefont" or similar service starts, you need to set your font to Uni3-Fixed16.psf.gz or something very similar.
This commit is contained in:
@@ -31,6 +31,7 @@ struct font_desc {
|
||||
#define SUN12x22_IDX 7
|
||||
#define ACORN8x8_IDX 8
|
||||
#define MINI4x6_IDX 9
|
||||
#define FIXED8x16_IDX 10
|
||||
|
||||
extern const struct font_desc font_vga_8x8,
|
||||
font_vga_8x16,
|
||||
@@ -41,7 +42,8 @@ extern const struct font_desc font_vga_8x8,
|
||||
font_sun_8x16,
|
||||
font_sun_12x22,
|
||||
font_acorn_8x8,
|
||||
font_mini_4x6;
|
||||
font_mini_4x6,
|
||||
font_fixed_8x16;
|
||||
|
||||
/* Find a font with a specific name */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user