]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/smi.c
Be a little bit quieter, and consequentially be a lot bit faster.
[netwatch.git] / aseg-paging / smi.c
index 1152723c99bafc9f320705e21950da0756ff14fc..7f75a8539e1acf849d163fba5f8736aac3e14ff4 100644 (file)
@@ -5,6 +5,8 @@
 #include <smi.h>
 #include <pci-bother.h>
 #include <serial.h>
+#include <fb.h>
+#include <output.h>
 #include "../net/net.h"
 #include "vga-overlay.h"
 
@@ -19,12 +21,19 @@ void smi_entry(void)
        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);
-       strblit(statstr, 0, 0, 0);
+       if (!fb || fb->curmode.text)
+       {
+               sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
+               strblit(statstr, 0, 0, 0);
+       }
        
-       serial_init();
        eth_poll();
        
        if (inl(0x840) & 0x1000)
This page took 0.021863 seconds and 4 git commands to generate.