]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/smi.c
Dont' worry about that error.
[netwatch.git] / aseg-paging / smi.c
index bd29f64f81713da06febd76e5b8cbc028ae368f1..031797d28efe7d5299d1aee94753b40a58406529 100644 (file)
@@ -5,6 +5,8 @@
 #include <smi.h>
 #include <pci-bother.h>
 #include <serial.h>
 #include <smi.h>
 #include <pci-bother.h>
 #include <serial.h>
+#include <fb.h>
+#include <output.h>
 #include "../net/net.h"
 #include "vga-overlay.h"
 
 #include "../net/net.h"
 #include "vga-overlay.h"
 
@@ -19,12 +21,16 @@ void smi_entry(void)
        pcisave = inl(0xCF8);
        vgasave = inb(0x3D4);
        pci_unbother_all();
        pcisave = inl(0xCF8);
        vgasave = inb(0x3D4);
        pci_unbother_all();
+       
+       serial_init();
+       
+       if (fb)
+               fb->getvmode(fb->priv);
 
        counter++;
        sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
 
        counter++;
        sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
-       strblit(statstr, 0, 0);
+       strblit(statstr, 0, 0, 0);
        
        
-       serial_init();
        eth_poll();
        
        if (inl(0x840) & 0x1000)
        eth_poll();
        
        if (inl(0x840) & 0x1000)
This page took 0.024079 seconds and 4 git commands to generate.