From e3c2613f918ed1e302ec6c3d3a35bb176e154aa5 Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 4 Jul 2006 11:33:00 +0000 Subject: pcnet nic support (Antony T Curtis) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2036 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/pci.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'hw/pci.c') diff --git a/hw/pci.c b/hw/pci.c index ebe606814c..f58f6fd60c 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -493,6 +493,8 @@ void pci_nic_init(PCIBus *bus, NICInfo *nd) pci_ne2000_init(bus, nd); } else if (strcmp(nd->model, "rtl8139") == 0) { pci_rtl8139_init(bus, nd); + } else if (strcmp(nd->model, "pcnet") == 0) { + pci_pcnet_init(bus, nd); } else { fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model); exit (1); -- cgit v1.2.3