Edit oskit/dev/linux_ethernet.h. Delete all references
to drivers besides the "LANCE"/"AMD" driver. This means that
the file's contents (ignoring comments) should look like:
#ifdef OSKIT_ARM32_SHARK
driver(cs89x0, "Crystal Semiconductor CS89[02]0", NULL, "Russell Nelson", "cs89x0", cs89x0_probe)
#else
driver(lance, "LANCE", "AMD", "Donald Becker", "lance", lance_probe)
#endif
Why is this necessary? I believe it is because the ethernet
driver initialization code causes each driver to probe for its
card, and probing for non-LANCE cards seems to hurt VMware.