欧美自拍小视频_国产片在线免费观看_中文字幕啪啪_成人av高清在线_欧美一区二区视频免费观看_亚洲国产激情

以文本方式查看主題

-  曙海教育集團(tuán)論壇  (http://www.rfoamep.cn/bbs/index.asp)
--  WinCE系統(tǒng)定制與驅(qū)動(dòng)開發(fā)  (http://www.rfoamep.cn/bbs/list.asp?boardid=36)
----  關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問題  (http://www.rfoamep.cn/bbs/dispbbs.asp?boardid=36&id=1810)

--  作者:wangxinxin
--  發(fā)布時(shí)間:2010-11-26 10:26:40
--  關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問題
目前我用VS2005定制intel 8255QM的網(wǎng)卡驅(qū)動(dòng),但是WINCE啟動(dòng)后看不到添加的網(wǎng)絡(luò)連接
現(xiàn)在我做了以下幾件事
第一我在platform.bib的MODULES中添加了  
e100ce6.dll $(_FLATRELEASEDIR)\\e100ce6.dll NK SHK
第二我在platform.reg中添加了

IF CEPB_INTELFE_PCI

;Create registry information for Intel(R) Miniport Driver

[HKEY_LOCAL_MACHINE\\Comm\\E100CE6]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.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\\E100CE6]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"1229","2449","1031","1032","1033","1034","1035","1036","1037","1038","1039","103A","103B"
  "Dll"="NDIS.dll"
  "Entry"="NdisPCIBusDeviceInit"
  "Transceiver"=dword:3
  "MiniPort"="E100CE6"
;Installable ISR Handler Information
  "IsrDll"="giisr.dll"
  "IsrHandler"="ISRHandler"
  "PortIsIO"=dword:0
  "PortOffset"=dword:0
  "PortSize"=dword:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE61\\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 ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE61\\Parms\\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

[HKEY_LOCAL_MACHINE\\Comm\\E100CE6B]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.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\\E100CE6B]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"103C","103D","103E","1050","1051","1052","1053","1054","1055","1056","1057"
  "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:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE6B1\\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 ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE6B1\\Parms\\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

[HKEY_LOCAL_MACHINE\\Comm\\E100CE6C]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.dll"

[HKEY_LOCAL_MACHINE\\Drivers\\BuiltIn\\PCI\\Template\\E100CE6C]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"1064","1065","1066","1067","1068","1069","106A","106B"
  "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:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE6C1\\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 ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\\COMM\\PCI\\E100CE6C1\\Parms\\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

ENDIF ;//Intel(R) miniport registry additions.
第三我在項(xiàng)目的環(huán)境變量中添加了CEPB_INTELFE_PCI =1
第四我把下載的幾個(gè)文件復(fù)制到了platform\\cepc\\files的目錄下
第五 以前在5.0會(huì)有一個(gè)cec文件,但是6.0沒有只有pbcxml,我用vs2005打開cec就報(bào)錯(cuò),怎么改都不對(duì),所以我也就沒有轉(zhuǎn)換,添加這個(gè)catalog.
但現(xiàn)在問題是在NK.BIN中可以看到網(wǎng)卡的DLL和注冊(cè)表的信息,但是OS啟動(dòng)后看不到這個(gè)網(wǎng)卡的連接,希望大家能幫我解決這個(gè)問題,謝謝啊

主站蜘蛛池模板: 日本黄色激情视频 | 亚洲综合伊人久久综合 | 乱人妻人伦中文字幕 | 免费的一极毛片在线播放 | 国产激情视频在线 | 人妻被按摩师玩弄到潮喷 | 青视频在线 | 国产sm调教折磨视频 | 婷婷开心激情综合五月天 | 啪啪免费网站入口链接 | 狼狼色丁香久久婷婷综合五月 | 免费一级欧美大片在线观看 | 老司机深夜影院入口aaaa | 久揄揄鲁一二三四区高清在线 | 欧美在线播放一区二区 | 国产福利在线观看你懂的 | 一级福利视频 | 日本japanese丰满多毛 | 国产精品永久在线观看 | 性生大片免费观看性 | 国产成人精品免费 | 精品国产亚洲av麻豆 | 在线观看国产精品av | 国产成人亚洲精品久久 | 国产在线视频专区 | 久久av无码精品人妻系列 | 污污网站国产精品白丝袜 | 久久亚洲精品无码aⅴ大香 久久亚洲精品无码av | 亚洲乱理伦片在线观看中字 | 久久久久久久99精品国产片 | 国产福利一区二区麻豆 | 99riav视频国产在线看 | 精品久久久久久无码中文字幕一区 | 狠狠色噜噜狠狠狠888米奇视频 | 少妇放荡的呻吟干柴烈火动漫 | 欧美日韩国产精品va | 性做久久久久久网站 | 国产日韩欧美不卡www | 美女免费污网站在线播放 | 男人天堂伊人 | 深夜福利视频在线观看 |