[ Last edited by sny on 2004-5-25 at 03:32 ]
我不是说的很清楚了么?跟机器的serial#毫无关系,JS骗人的把戏
通用版本我也发过了,你们自己不信,不敢用,我也没办法。唉,可怜我一片好心…… 严重感谢楼主的义举!!!!! 支持一下先 很不错的东西,我试了,R40可以用的。但昨天一台网友的IBM R32不行(P4 1.7的),我加的CISCO 卡,死活就是过不去……………… 从elake给的汇编代码看,这个程序只是通过70,71断口修改了CMOS的0x6a字节(或0x80). 这个字节应该是控制是否进行miniPCI设备ID检查的开关。这个程序没有任何硬件或者BIOS的EEPROM操作,应该是绝对安全的.
我在不久前曾通过直接修改BIOS成功搞定了MiniPCI的1802问题. 如果1802.com对你的本本无效,你可以考虑这个办法.
附: 我以前做的的笔记 (sorry, 是E文,不想翻了。)
Crack the IBM's BIOS:
1. Download and extract BIOS files
a) If you have a floppy disk, download the Diskette version BIOS from IBM.
The program will write the BIOS files to a floppy disk.
b) If you have no FD, download the windows version.
Execute the program, but don't really flash (go to the final step).
You can find the image file in the temp directory like
C:\Document and Settings\USER\Local Settings\Temp\????\1IUJ09US.IMG
Extract the files in the image to a FAT partition can be accessed by DOS
with WinImage.
2. Get the uncompressed BIOS image:
a) Boot to DOS
b) phlash16 /x /BU $0186000.FL1
c) then you have "BIOS.BAK"
3. Hex Edit BIOS.BAK, change the default pciid to that of your wifi card.
(60 12 73 38 68 16 06 04)
PCI_ID: 1260:3873/1668:0406 -> ...
4. Modify the Checksum
For example, the PCI ID of your wifi card is: 14e4:4320/1028:0001.
And the original checksum is: 08D6CDFF.
Notice that the order of the 4 bytes to calculate checksum should be opposite to the address order. For example, 4 bytes like "12 34 56 78" in address order, should be "0x78563412" for calculation of checksum. The final checksum is again the reversed order of the calculation.
Suppose the address of the original PCI ID is MOD 4. Then
0xFFCDD608+0x38731260+0x04061668-0x432014E4-0x00011028 = 0xF925D9C4
New CKSM: C4D925F9
5. Flash bios
phlash16.exe /cs /x NEWBIOS.img
Here, the switch "/cs" will let the program do a checksum check, and guarrantee the calculated new Checksum is correct. Otherwise, the program just exit with an error mesg and will not flash the bios. Originally posted by drksh at 2004-6-11 12:46 PM:
从elake给的汇编代码看,这个程序只是通过70,71断口修改了CMOS的0x6a字节(或0x80). 这个字节应该是控制是否进行miniPCI设备ID检查的开关。这个程序没有任何硬件或者BIOS的EEPROM操作,应该是绝对安全的.
我在不 ...
找过几天,就是死活找不到这些文章,非常的谢谢啦:D:D:D 早有这个东东俺就不用多花银子买IBM专用的了,心痛呀!
还是万分感谢! Originally posted by drksh at 2004-6-11 12:46 PM:
从elake给的汇编代码看,这个程序只是通过70,71断口修改了CMOS的0x6a字节(或0x80). 这个字节应该是控制是否进行miniPCI设备ID检查的开关。这个程序没有任何硬件或者BIOS的EEPROM操作,应该是绝对安全的.
我在不久前曾通过直接修改BIOS成功搞定了MiniPCI的1802问题. 如果1802.com对你的本本无效,你可以考虑这个办法.
附: 我以前做的的笔记 (sorry, 是E文,不想翻了。)
Crack the IBM's BIOS:
1. Download and extract BIOS files
a) If you have a floppy disk, download the Diskette version BIOS from IBM.
The program will write the BIOS files to a floppy disk.
b) If you have no FD, download the windows version.
Execute the program, but don't really flash (go to the final step).
You can find the image file in the temp directory like
C:\Document and Settings\USER\Local Settings\Temp\????\1IUJ09US.IMG
Extract the files in the image to a FAT partition can be accessed by DOS
with WinImage.
2. Get the uncompressed BIOS image:
a) Boot to DOS
b) phlash16 /x /BU $0186000.FL1
c) then you have "BIOS.BAK"
3. Hex Edit BIOS.BAK, change the default pciid to that of your wifi card.
(60 12 73 38 68 16 06 04)
PCI_ID: 1260:3873/1668:0406 -> ...
4. Modify the Checksum
For example, the PCI ID of your wifi card is: 14e4:4320/1028:0001.
And the original checksum is: 08D6CDFF.
Notice that the order of the 4 bytes to calculate checksum should be opposite to the address order. For example, 4 bytes like "12 34 56 78" in address order, should be "0x78563412" for calculation of checksum. The final checksum is again the reversed order of the calculation.
Suppose the address of the original PCI ID is MOD 4. Then
0xFFCDD608+0x38731260+0x04061668-0x432014E4-0x00011028 = 0xF925D9C4
New CKSM: C4D925F9
5. Flash bios
phlash16.exe /cs /x NEWBIOS.img
Here, the switch "/cs" will let the program do a checksum check, and guarrantee the calculated new Checksum is correct. Otherwise, the program just exit with an error mesg and will not flash the bios.
不知大家可不可以仔细研究一下这个文章?~
我朋友的是X31~是我给他的一块Intel2200BG~用过了1802的补丁~可以正常识别~但是无法使用热键Fn+F5~上面那篇文章似乎可以解决热键Fn+F5的问题吗?
[ Last edited by AAJZ on 2004-8-3 at 15:47 ] 好久没碰过汇编了,真是牛人啊。 要是能用这种方法能够解决 0715 CRC 问题该多好啊。
不过想来本本无法启动哪能进DOS呢。
也不知道人家号称不用拆机就解决问题是如何弄的,郁闷啊。 能用的,我也用了呀 Originally posted by ncwjk at 2004-8-3 04:13 PM:
能用的,我也用了呀
??~
你是说可以使用Fn+F5?~
能说说你的相关配置和方法吗?~
多谢~~^:^ 在R40E上试验成功,感谢! 那这样说可以破1801错误吗?1801 是扩展坞。
可行吗? Originally posted by ink at 2004-8-3 09:00 PM:
那这样说可以破1801错误吗?1801 是扩展坞。
可行吗?
这个是破解1802。不是1801错误啊 Originally posted by AAJZ at 2004-8-3 08:53 PM:
??~
你是说可以使用Fn+F5?~
能说说你的相关配置和方法吗?~
多谢~~^:^
我是指卡能用了,FN+F5没试啊。我不用那功能的 Originally posted by ncwjk at 2004-8-3 10:15 PM:
这个是破解1802。不是1801错误啊
晕,我知道是破戒1802的,我是说根据这个原理,能不能同样的写段东西去破戒1801错误。 Originally posted by ink at 2004-8-3 10:49 PM:
晕,我知道是破戒1802的,我是说根据这个原理,能不能同样的写段东西去破戒1801错误。
呵呵,这个我不晓得了哦 呵呵,其实升级一下BIOS就可以解决了。我的X31升级原装B/G网卡就出现这个问题,升级了一下BIOS就搞定了。 Originally posted by ncwjk at 2004-8-3 10:16 PM:
我是指卡能用了,FN+F5没试啊。我不用那功能的
?~不用Fn+F5?~那能打开无线网卡吗?~
如果可以的话~请告知方法~多谢~^,^ 顶起来~~~~~
感谢楼主,解决了大问题 R32上破解失败。
唉晕死哦。INTEL 2100B的卡 成功了,现在是B/G。不过就是Fn+F5不能用了...... my laptop is T30-86c, i get a mini 802.11.b/g wireless card from ibm r51. can i use this progrem to crack my 1802 problem?
thank you T30 + Dell 1300 (broadcom b/g) + 1802 成功
没法下载这个补丁啊,谁给我发一个啊,55~
没法下载这个补丁啊,谁给我发一个啊,lianqm@21cn.com 估计是一个读写BIOS代码的程序,屏蔽BIOS的检测!
感谢搂主--能用
我的也是IBM的X31。无线网卡也是Intel的2200BG。问题也是没有认证。运行搂主程序后能用了。在此非常感谢!F5热键跟驱动程序有关.到IBM的网站上下最新的热键驱动程序和接入管理软件就ok.^c^ 破解1802后,WIFI灯是否能亮?