summaryrefslogtreecommitdiff
path: root/kernel/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kernel.c')
-rw-r--r--kernel/kernel.c4
1 files changed, 2 insertions, 2 deletions
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);