reactos/drivers/network/dd/ne2000/netne.inf
Joachim Henze a89f4ed5a1 [0.4.9][DD] Improve network driver infs
within netne.inf add the missing PCI\VEN_10EC&DEV_8029.DeviceDesc
I noticed it missing when testing with 86box VM selecting adapter "[PCI] Realtek RTL8029AS". Addendum to last commit.

While at it: compactify some of the infs a bit on the older branches:
writing here only the sizes for releases/0.4.14:
- netne.inf     1.636 ->  1.625bytes will fit into a single NTFS-cluster now (or within MFT) => endgoal reached
- netrtl.inf    4.139 ->  3.956bytes will fit into a single NTFS-cluster now (or within MFT) => endgoal reached

the files on even older branches became either the same size, or smaller.
2024-06-20 02:45:42 +02:00

66 lines
1.5 KiB
INI

; NETNE.INF
; Installation file for NE2000-compatible network cards
[Version]
Signature = "$Windows NT$"
LayoutFile = layout.inf
Class = Net
ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
Provider = %ReactOS%
DriverVer = 02/15/2007,1.02
[DestinationDirs]
DefaultDestDir = 12
[Manufacturer]
%GenericMfg% = GenericMfg
%RealtekMfg% = RealtekMfg
[GenericMfg]
%*PNP80D6.DeviceDesc% = NE2000_Inst_Isa.ndi,*PNP80D6
[RealtekMfg]
%*RTL8019.DeviceDesc% = NE2000_Inst_Isa.ndi,*RTL8019
%PCI\VEN_10EC&DEV_8029.DeviceDesc% = NE2000_Inst_Pci.ndi,PCI\VEN_10EC&DEV_8029
[NE2000_Inst_Isa.ndi.NT]
Characteristics = 0x4 ; NCF_PHYSICAL
BusType = 14 ; PNPIsaBus
AddReg = NE2000_AddReg.NT
CopyFiles = NE2000_CopyFiles.NT
[NE2000_Inst_Pci.ndi.NT]
Characteristics = 0x4 ; NCF_PHYSICAL
BusType = 5 ; PCIBus
AddReg = NE2000_AddReg.NT
CopyFiles = NE2000_CopyFiles.NT
[NE2000_AddReg.NT]
HKR,,Port,0x00000000,"c100"
HKR,,Irq,0x00000000,"B"
[NE2000_CopyFiles.NT]
ne2000.sys
[NE2000_Inst_Isa.ndi.NT.Services]
AddService = ne2000, 0x00000002, ne2000_Service_Inst
[NE2000_Inst_Pci.ndi.NT.Services]
AddService = ne2000, 0x00000002, ne2000_Service_Inst
[ne2000_Service_Inst]
ServiceType = 1
StartType = 3
ErrorControl = 1
ServiceBinary = %12%\ne2000.sys
LoadOrderGroup = NDIS
[Strings]
ReactOS = "ReactOS Team"
RealtekMfg = "Realtek"
GenericMfg = "(Generic network cards)"
*PNP80D6.DeviceDesc = "NE2000-compatible Ethernet Adapter"
*RTL8019.DeviceDesc = "Realtek RTL8019AS Ethernet Adapter"
PCI\VEN_10EC&DEV_8029.DeviceDesc = "Realtek RTL8029 Ethernet Adapter"