diff -Nur grub-0.94/ChangeLog grub-0.94-patched/ChangeLog --- grub-0.94/ChangeLog Sun Jan 25 16:41:08 2004 +++ grub-0.94-patched/ChangeLog Sat Feb 7 15:30:56 2004 @@ -1,3 +1,10 @@ +2004-02-07 Oliver Tschaeche + + * netboot/pci.h (PCI_NIC): include ID 0x1050 of onboard intel + eepro100 82555. + + * netboot/config.c (PCI_NIC): likewise + 2004-01-25 Yoshinori K. Okuji * docs/grub.texi (Obtaining and Building GRUB): Instead of diff -Nur grub-0.94/netboot/config.c grub-0.94-patched/netboot/config.c --- grub-0.94/netboot/config.c Wed Jul 9 13:45:37 2003 +++ grub-0.94-patched/netboot/config.c Sat Feb 7 14:24:21 2004 @@ -122,6 +122,8 @@ "Intel EtherExpressPro100 ID1029", 0, 0, 0, 0}, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1030, "Intel Corporation 82559 InBusiness 10/100", 0, 0, 0, 0}, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1050, + "Intel Corporation 82555 10/100", 0, 0, 0, 0}, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82562, "Intel EtherExpressPro100 82562EM", 0, 0, 0, 0}, #endif @@ -281,6 +283,7 @@ { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82559ER, eepro100_probe }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1029, eepro100_probe }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1030, eepro100_probe }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1050, eepro100_probe }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82562, eepro100_probe }, # endif /* INCLUDE_EEPRO100 */ # ifdef INCLUDE_EPIC100 diff -Nur grub-0.94/netboot/pci.h grub-0.94-patched/netboot/pci.h --- grub-0.94/netboot/pci.h Wed Jul 9 13:45:38 2003 +++ grub-0.94-patched/netboot/pci.h Sat Feb 7 14:24:20 2004 @@ -129,6 +129,7 @@ #define PCI_DEVICE_ID_INTEL_82559ER 0x1209 #define PCI_DEVICE_ID_INTEL_ID1029 0x1029 #define PCI_DEVICE_ID_INTEL_ID1030 0x1030 +#define PCI_DEVICE_ID_INTEL_ID1050 0x1050 #define PCI_DEVICE_ID_INTEL_82562 0x2449 #define PCI_VENDOR_ID_AMD 0x1022 #define PCI_DEVICE_ID_AMD_LANCE 0x2000