I tested some NE2000 Compatible PnP Ethernet-Cards with FreeBSD-current if_ed.c code. It's fine. I hope to append PnP card ids as below patch. And I hope to append **controller pnp0** to boot.flp :-) Fix: --- sys/i386/isa/if_ed.c.org 1998/09/03 05:55:52 +++ sys/i386/isa/if_ed.c 1998/09/03 05:59:39 @@ -3405,7 +3405,15 @@ u_long vend_id; char *id_str; } edpnp_ids[] = { - { 0x1980635e, "WSC8019"}, + { 0x1980635e, "WSC8019"}, /* From FreeBSD-current if_ed.c */ + { 0x0890635e, "WSC9008"}, /* From gnats 6782 by paterno@dsi.UNIFI.IT */ + { 0xd680d041, "NE2000 Compatible"}, /* From gnats 6782 replay mail */ + { 0x0131d805, "ANX3101"}, /* Acer ALN-101T */ + { 0x01200507, "RTL8019"}, /* PLANET ENW-2401 */ + { 0x19808c4a, "RTL8019"}, /* SURECOM EP312(ISA) */ + /* ELECOM LD-PNE20/T */ + /* A.I.Brain-E200T */ + { 0x0090252a, "JQE9000"}, /* No-brand Jumperless NE2000 PnP card */ { 0 } };
Responsible Changed From-To: freebsd-bugs->dfr I'm updating if_ed for the new PnP
State Changed From-To: open->closed these PnP id were added in rev.1.1@sys/dev/ed/if_ed_isa.c