From 1e5f3a249d4d389f6f7747c8f26aaf8e2988d930 Mon Sep 17 00:00:00 2001 From: Miguel Date: Fri, 21 Sep 2018 19:49:53 +0200 Subject: struggling with UEFI --- kernel/kernel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kernel/kernel.c') diff --git a/kernel/kernel.c b/kernel/kernel.c index ab4332a..6bda4bf 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -63,7 +63,7 @@ void kernel_main(uint32_t eax,uint32_t ebx) // -- GET CONFIGS -- // klog("Read Multiboot Structures ..."); multiboot_information *cfg_multiboot; - cfg_multiboot=multiboot_read(eax, ebx,true); // true-silent + cfg_multiboot=multiboot_read(eax, ebx,false); // true-silent // elf_multiboot_read(cfg_multiboot); // just show kernel section headers klog("Read Advanced Power Configuration Interface (ACPI) Structures ..."); @@ -117,7 +117,7 @@ void kernel_main(uint32_t eax,uint32_t ebx) fixme("support binfonts spanning multiple blocks?"); uint32_t inode= ext2_filename_to_inode(VMEM_EXT2_RAMIMAGE,VESA_FONT_PATH); uint32_t addr= ext2_inode_blockstart( VMEM_EXT2_RAMIMAGE,inode,0); - vesa_init(cfg_multiboot->vbe_control_info,cfg_multiboot->vbe_mode_info,addr); + vesa_init(cfg_multiboot,addr); // -- STD STREAMS -- // fd_init_std_streams(0,cfg_multiboot->framebuffer_type!=2); -- cgit v1.2.3