From 0e94325936030990ac95b9ca90382aa265c95818 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 30 Nov 2019 14:14:59 +0100 Subject: Re-enabled font in non-installed versions --- src/kernel/graphics/font.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/kernel/graphics/font.c') diff --git a/src/kernel/graphics/font.c b/src/kernel/graphics/font.c index 1e4e666..a7e5096 100644 --- a/src/kernel/graphics/font.c +++ b/src/kernel/graphics/font.c @@ -4,14 +4,24 @@ #include #include #include +#include +#include +#include + +void font_install() +{ + font = (struct font *) kmalloc(100000);; // High quality shit -void font_install() { uint8_t boot_drive_id = (uint8_t) (*((uint8_t *) 0x9000)); if (boot_drive_id != 0xE0) { struct ata_interface *primary_master = new_ata(1, 0x1F0); marfs_init(primary_master); - - font = (struct font *) kmalloc(100000); // High quality shit marfs_read_whole_file(4, (uint8_t *) font); + } else { + char *font_p[] = {"FONT.BIN"}; + struct iso9660_entity *font_e = ISO9660_get(font_p, 1); + if (!font_e) panic("Font not found!"); + ATAPI_granular_read(1 + (font_e->length / 2048), font_e->lba, (uint8_t *) font); + kfree(font_e); } } \ No newline at end of file -- cgit v1.2.3