platform.reg

来自「Win CE4.2下Intel 82559系列网卡的驱动」· REG 代码 · 共 110 行

REG
110
字号


;
; Registry configuration for GD82559ER adapter.  These Registry entries must
; be included in the master PLATFORM.REG (or one of the other Registry source
; files) in the WinCE image.
;


; GD82559ER Registry configuration, if enabled
IF CEPC_GD82559ER_PCI

; Generic adapter configuration/description
[HKEY_LOCAL_MACHINE\Comm\E100CE]
   "DisplayName"="GD82559ER-based Ethernet Driver"
   "Group"="NDIS"
   "ImagePath"="e100ce.dll"

[HKEY_LOCAL_MACHINE\Comm\E100CE\Linkage]
   "Route"=multi_sz:"E100CE1"


; Specific configuration for an adapter instance
[HKEY_LOCAL_MACHINE\Comm\E100CE1]
   "DisplayName"="GD82559ER-based Ethernet Driver"
   "Group"="NDIS"
   "ImagePath"="e100ce.dll"

;Create registry information for template (will be copied to ALL instances of
;adapters using the Intel Miniport Driver

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\PCI\Template\E100CE]
;PCI Bus Enumeration Information
   "Class"=dword:02
   "SubClass"=dword:00
   "ProgIF"=dword:0
   "VendorID"=multi_sz:"8086","8086","8086"
   "DeviceID"=multi_sz:"1209","1229","2449"
   "Dll"="NDIS.dll"
   "Entry"="NdisPCIBusDeviceInit"
   "Transceiver"=dword:3
;Installable ISR Handler Information
   "IsrDll"="giisr.dll"
   "IsrHandler"="ISRHandler"
   "PortIsIO"=dword:0
   "PortOffset"=dword:0
   "PortSize"=dword:4
   "PortMask"=dword:20F0


[HKEY_LOCAL_MACHINE\Comm\E100CE1\Parms]
   ; Assume PCI bus 0
   "BusNumber"=dword:0
   "BusType"=dword:5
   "BusTypeLocal"=dword:5

   ; Shared packet buffer storage, must match reserved memory range
   "CE_PhysAddr"=dword:801DC000

   ; Other adapter-specific Registry parameters may be inserted here


; Settings for DHCP, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\Comm\E100CE1\Parms\TcpIp]
   "EnableDHCP"=dword:1
   ; This should be MULTI_SZ
   "DefaultGateway"=""
   ; Use zero for broadcast address? (or 255.255.255.255)
   "UseZeroBroadcast"=dword:0
   ; This should be MULTI_SZ, the IP address list
   "IpAddress"="0.0.0.0"
   ; This should be MULTI_SZ, the subnet masks for the above IP addresses
   "Subnetmask"="0.0.0.0"
ENDIF


; Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\Comm\E100CE1\Parms\TcpIp]
   "EnableDHCP"=dword:0
   ; This should be MULTI_SZ
   "DefaultGateway"="10.13.31.1"
   ; Use zero for broadcast address? (or 255.255.255.255)
   "UseZeroBroadcast"=dword:0
   ; This should be MULTI_SZ, the IP address list
   "IpAddress"="10.13.31.43"
   ; This should be MULTI_SZ, the subnet masks for the above IP addresses
   "Subnetmask"="255.255.255.0"
ENDIF


; Link between adapter and protocol stack
[HKEY_LOCAL_MACHINE\Comm\Tcpip\Linkage]
   ; This should be MULTI_SZ
   ; This is the list of llip drivers to load
    "Bind"=multi_sz:"e100ce1"

; Disable the standard network stacks, if NDISTEST is enabled
IF NDISTEST
[HKEY_LOCAL_MACHINE\Comm\AFD]
   "Stacks"=""
ENDIF

ENDIF
; GD82559ER Registry configuration ends



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?