> Hi,
> 
> I'm encountering system crash during boot with latest snapshot.  Turns
> out that it works fine when I disable skgpio through UKC.

Try this.

Index: skgpio.c
===================================================================
RCS file: /cvs/src/sys/dev/isa/skgpio.c,v
retrieving revision 1.1
diff -u -p -r1.1 skgpio.c
--- skgpio.c    10 Dec 2014 05:42:25 -0000      1.1
+++ skgpio.c    11 Dec 2014 20:20:36 -0000
@@ -89,8 +89,9 @@ skgpio_match(struct device *parent, void
        struct isa_attach_args *ia = aux;
        bus_space_handle_t ioh;
 
-       if (strcmp(hw_vendor, "Soekris Engineering") ||
-           strcmp(hw_prod, "net6501"))
+       if (hw_vendor == NULL || hw_prod == NULL ||
+           strcmp(hw_vendor, "Soekris Engineering") != 0 ||
+           strcmp(hw_prod, "net6501") != 0)
                return (0);
 
        if (ia->ia_iobase != SKGPIO_BASE || bus_space_map(ia->ia_iot,

Reply via email to