Unsolved
This post is more than 5 years old
9 Posts
0
19133
October 31st, 2004 23:00
OEMSETUP.INF File for BROADCOM 440X
Hi!
Since I didn't find any OEMSETUP.INF file to make a network bootdisk, I've created this one...
Put it in the same folder (\DOS\NDIS2)...
Begin
-----------------------------------------------
;; Frederick St-Gelais Windows for Workgroups 3.11 Inf file for Broadcom 440x 10/100 Integrated Controller Ethernet Driver (B44)
;; OEMSETUP.INF
;; Copyright (c) Frederick St-Gelais, 2004
;;
;; shrimpboythequick@hotmail.com
;;
;; %VER v0.1.0
;;
;; OEMSETUP.INF
;; Copyright (c) Frederick St-Gelais, 2004
;;
;; shrimpboythequick@hotmail.com
;;
;; %VER v0.1.0
;;
[data]
type=network
version="1.0.0"
type=network
version="1.0.0"
[disks]
1 = \wfw311 ,"Broadcom 440x 10/100 Integrated Controller Ethernet Driver", b44.38_
1 = \wfw311 ,"Broadcom 440x 10/100 Integrated Controller Ethernet Driver", b44.38_
[netcard]
; key = description, MSID, type, media, mode, install, protini, style
tcm$b44="Broadcom 440x(B44)",0,ndis,ethernet,0x07,tcm$b44,tcm$b44_nif
; key = description, MSID, type, media, mode, install, protini, style
tcm$b44="Broadcom 440x(B44)",0,ndis,ethernet,0x07,tcm$b44,tcm$b44_nif
;
; 3Com Fast EtherLink XL / Etherlink XL Adapter.
;
[tcm$b44]
ndis2=1:b44.dos
; 3Com Fast EtherLink XL / Etherlink XL Adapter.
;
[tcm$b44]
ndis2=1:b44.dos
[tcm$b44_nif]
param =DriverName,"",static,"b44$"
param =DriverName,"",static,"b44$"
-----------------------------------------------
End
Have a nice boot!
Fred
P.S.: Here is some useful links about network bootdisk.
No Events found!


schooltech1
2 Posts
0
November 15th, 2012 12:00
The above didn't work for me when I tried to create the oeminstall.inf but I was able to take the oeminstall.inf from a broadcom 57xx driver and change the driver information to make it work. The modified data is below.
Begin
-------------------------------------------------
; OEMSETUP.INF for Broadcom Ethernet Adapter
[netcard]
B44$="Broadcom Ethernet", 0, NDIS, Ethernet, REAL, B44$_ini, B44$_ini
[B44$_ini]
DriverName=B44$
device=B44.dos, @INST\B44.dos
NETDIR=5:B44.dos
---------------------------------------------------
End
Hope this saves someone some time.