545 lines
13 KiB
INI
545 lines
13 KiB
INI
|
;***********************************************************************
|
||
|
;
|
||
|
; NETDTECT.INF
|
||
|
;
|
||
|
; Install Netcard Detection Driver
|
||
|
;
|
||
|
;***********************************************************************
|
||
|
|
||
|
;-----------------------------------------------------------------------
|
||
|
; OPTION TYPE
|
||
|
; -----------
|
||
|
; This identifies the Option type we are dealing with. The different
|
||
|
; possible types are:
|
||
|
;
|
||
|
; COMPUTER, DISPLAY, MOUSE, KEYBOARD, LAYOUT, SCSI, PRINTER, ...
|
||
|
;
|
||
|
; Types specific to networking:
|
||
|
;
|
||
|
; NetAdapter, a netcard / adapter combination or just a netcard
|
||
|
; NetDriver, just a netcard driver
|
||
|
; NetTransport, a complete NDIS-compliant TDI transport stack
|
||
|
; NetService, an NT networking service
|
||
|
; NetWork, a complete network ensemble.
|
||
|
; NetProvider a complete network which supports NT MPR protocol
|
||
|
;-----------------------------------------------------------------------
|
||
|
|
||
|
[Identification]
|
||
|
OptionType = NetDriver
|
||
|
|
||
|
;-----------------------------------------------------------------------
|
||
|
; OPTION LIST
|
||
|
; -----------
|
||
|
; This section lists the OEM Option key names. These keys are locale
|
||
|
; independent and used to represent the option in a locale independent
|
||
|
; manner.
|
||
|
;
|
||
|
;-----------------------------------------------------------------------
|
||
|
|
||
|
[Options]
|
||
|
NCDETECT
|
||
|
|
||
|
;***********************************************************************
|
||
|
; CONSTANTS FOR USING DIALOGS
|
||
|
;***********************************************************************
|
||
|
|
||
|
[FileConstants]
|
||
|
;
|
||
|
; File names, etc.
|
||
|
;
|
||
|
UtilityInf = "UTILITY.INF"
|
||
|
subroutineinf = "SUBROUTN.INF"
|
||
|
SoftwareType = "driver"
|
||
|
Exit_Code = 0
|
||
|
;ShellCode = 0
|
||
|
|
||
|
[GeneralConstants]
|
||
|
;
|
||
|
; Program flow control variables.
|
||
|
;
|
||
|
from = ""
|
||
|
to = ""
|
||
|
;
|
||
|
; Return codes; Exit_Code is set to one of these
|
||
|
;
|
||
|
ExitCodeOk = 0
|
||
|
ExitCodeCancel = 1
|
||
|
ExitCodeFatal = 2
|
||
|
|
||
|
KeyNull = ""
|
||
|
MAXIMUM_ALLOWED = 33554432
|
||
|
RegistryErrorIndex = NO_ERROR
|
||
|
KeyProduct = ""
|
||
|
KeyParameters = ""
|
||
|
|
||
|
TRUE = 1
|
||
|
FALSE = 0
|
||
|
NoTitle = 0
|
||
|
|
||
|
ExitState = "Active"
|
||
|
OldVersionExisted = $(FALSE)
|
||
|
|
||
|
DriverPath = $(!STF_NTPATH)\drivers
|
||
|
ServiceKeyName = "NetDetect"
|
||
|
ServiceKeyPath = "System\CurrentControlSet\Services\NcDetect"
|
||
|
ServiceSysPath = "%SystemRoot%\System32\Drivers\netdtect.sys"
|
||
|
|
||
|
;---------------------------------------------------------------------------
|
||
|
; 1. Identify
|
||
|
;
|
||
|
; DESCRIPTION: To verify that this INF deals with the same type of options
|
||
|
; as we are choosing currently.
|
||
|
;
|
||
|
; INPUT: None
|
||
|
;
|
||
|
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL
|
||
|
; $($R1): Option Type (COMPUTER ...)
|
||
|
; $($R2): Diskette description
|
||
|
;---------------------------------------------------------------------------
|
||
|
|
||
|
[Identify]
|
||
|
;
|
||
|
;
|
||
|
read-syms Identification
|
||
|
|
||
|
set Status = STATUS_SUCCESSFUL
|
||
|
set Identifier = $(OptionType)
|
||
|
set Media = #("Source Media Descriptions", 1, 1)
|
||
|
|
||
|
Return $(Status) $(Identifier) $(Media)
|
||
|
|
||
|
;------------------------------------------------------------------------
|
||
|
; 2. ReturnOptions:
|
||
|
;
|
||
|
; DESCRIPTION: To return the option list supported by this INF and the
|
||
|
; localised text list representing the options.
|
||
|
;
|
||
|
;
|
||
|
; INPUT: $($0): Language used. ( ENG | FRN | ... )
|
||
|
;
|
||
|
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL |
|
||
|
; STATUS_NOLANGUAGE
|
||
|
; STATUS_FAILED
|
||
|
;
|
||
|
; $($R1): Option List
|
||
|
; $($R2): Option Text List
|
||
|
;------------------------------------------------------------------------
|
||
|
|
||
|
[ReturnOptions]
|
||
|
;
|
||
|
;
|
||
|
set Status = STATUS_FAILED
|
||
|
set OptionList = {}
|
||
|
set OptionTextList = {}
|
||
|
|
||
|
;
|
||
|
; Check if the language requested is supported
|
||
|
;
|
||
|
set LanguageList = ^(LanguagesSupported, 1)
|
||
|
Ifcontains(i) $($0) in $(LanguageList)
|
||
|
goto returnoptions
|
||
|
else
|
||
|
set Status = STATUS_NOLANGUAGE
|
||
|
goto finish_ReturnOptions
|
||
|
endif
|
||
|
|
||
|
;
|
||
|
; form a list of all the options and another of the text representing
|
||
|
;
|
||
|
|
||
|
returnoptions = +
|
||
|
set OptionList = ^(Options, 1)
|
||
|
set OptionTextList = ^(OptionsText$($0), 1)
|
||
|
set Status = STATUS_SUCCESSFUL
|
||
|
|
||
|
finish_ReturnOptions = +
|
||
|
Return $(Status) $(OptionList) $(OptionTextList)
|
||
|
|
||
|
;----------InstallOption-------------------------------------------------
|
||
|
;
|
||
|
; InstallOption:
|
||
|
;
|
||
|
; This section is shelled to by main installation processing
|
||
|
; or by NCPASHEL.INF during reconfig, removal, update, etc.
|
||
|
;
|
||
|
;
|
||
|
; FUNCTION: To copy files representing Options
|
||
|
; To configure the installed option
|
||
|
; To update the registry for the installed option
|
||
|
;
|
||
|
; INPUT: $($0): Language to use
|
||
|
; $($1): OptionID to install
|
||
|
; $($2): SourceDirectory
|
||
|
; $($3): AddCopy (YES | NO)
|
||
|
; $($4): DoCopy (YES | NO)
|
||
|
; $($5): DoConfig (YES | NO)
|
||
|
;
|
||
|
; OUTPUT: $($R0): STATUS: STATUS_SUCCESSFUL |
|
||
|
; STATUS_NOLANGUAGE |
|
||
|
; STATUS_USERCANCEL |
|
||
|
; STATUS_FAILED
|
||
|
;
|
||
|
;------------------------------------------------------------------------
|
||
|
[InstallOption]
|
||
|
;
|
||
|
; extract parameters
|
||
|
;
|
||
|
set Option = $($1)
|
||
|
set SrcDir = $($2)
|
||
|
set AddCopy = $($3)
|
||
|
set DoCopy = $($4)
|
||
|
set DoConfig = $($5)
|
||
|
|
||
|
;
|
||
|
; Check if the language requested is supported
|
||
|
;
|
||
|
set LanguageList = ^(LanguagesSupported, 1)
|
||
|
Ifcontains(i) $($0) NOT-IN $(LanguageList)
|
||
|
Return STATUS_NOLANGUAGE
|
||
|
endif
|
||
|
|
||
|
; define all the constants
|
||
|
|
||
|
set-subst LF = "\n"
|
||
|
|
||
|
read-syms GeneralConstants
|
||
|
read-syms FileConstants
|
||
|
|
||
|
read-syms DialogConstants$(!STF_LANGUAGE)
|
||
|
read-syms FileConstants$(!STF_LANGUAGE)
|
||
|
|
||
|
set-title $(FunctionTitle)
|
||
|
|
||
|
set to = Begin
|
||
|
set from = Begin
|
||
|
;
|
||
|
; Assume all is well.
|
||
|
;
|
||
|
set CommonStatus = STATUS_SUCCESSFUL
|
||
|
|
||
|
EndWait
|
||
|
|
||
|
;
|
||
|
; Set up the operation-mode-based variables and gaily welcome
|
||
|
; the user. If the "install mode" variable is improperly set,
|
||
|
; assume this is a new installation.
|
||
|
;
|
||
|
|
||
|
Begin = +
|
||
|
Ifstr(i) $(!NTN_InstallMode) == deinstall
|
||
|
set StartLabel = removeadapter
|
||
|
else-Ifstr(i) $(!NTN_InstallMode) == update
|
||
|
set StartLabel = UpgradeSoftware
|
||
|
else-Ifstr(i) $(!NTN_InstallMode) == bind
|
||
|
set StartLabel = bindingadapter
|
||
|
else-Ifstr(i) $(!NTN_InstallMode) == configure
|
||
|
set StartLabel = configureadapter
|
||
|
;
|
||
|
; You cannot config the software component
|
||
|
;
|
||
|
Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
|
||
|
Shell $(UtilityInf),RegistryErrorString,CANNOT_CONFIGURE_SOFTWARE
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
Debug-Output "ShellCode error: cannot get an error string."
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
set Error = $($R0)
|
||
|
set from = end
|
||
|
set to = end
|
||
|
goto Warning
|
||
|
endif
|
||
|
else
|
||
|
set StartLabel = installadapter
|
||
|
endif
|
||
|
|
||
|
set from = $(fatal)
|
||
|
set to = $(fatal)
|
||
|
goto $(StartLabel)
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; Installation Section
|
||
|
;-----------------------------------------------
|
||
|
|
||
|
installadapter = +
|
||
|
|
||
|
OpenRegKey $(!REG_H_LOCAL) "" $(ServiceKeyPath) $(MAXIMUM_ALLOWED) KeyService
|
||
|
|
||
|
Ifstr $(KeyProduct) != $(KeyNull)
|
||
|
;
|
||
|
; Same version already existed in the local machine
|
||
|
; Popup the dialog and ask the user whether he wants to continue
|
||
|
;
|
||
|
CloseRegKey $(KeyService)
|
||
|
|
||
|
Shell $(UtilityInf), VerExistedDlg, $(ProductSoftwareTitle),+
|
||
|
$(ProductVersion)
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
Debug-Output "ShellCode error: cannot get an error string."
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
|
||
|
goto end
|
||
|
endif
|
||
|
|
||
|
goto nextstep
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; Configuration Section
|
||
|
;-----------------------------------------------
|
||
|
configureadapter = +
|
||
|
;
|
||
|
; we should delete the old data here
|
||
|
;
|
||
|
set OldVersionExisted = $(TRUE )
|
||
|
|
||
|
goto nextstep
|
||
|
;
|
||
|
; If installing, go create the necessary keys;
|
||
|
; if configuring, they're already open.
|
||
|
;
|
||
|
nextstep = +
|
||
|
StartWait
|
||
|
;
|
||
|
; For now, there are no new files to copy
|
||
|
;
|
||
|
Goto nofilestocopy
|
||
|
|
||
|
ifstr(i) $(!NTN_InstallMode) == "install"
|
||
|
Ifstr(i) $(DoCopy) == "YES"
|
||
|
|
||
|
Shell $(UtilityInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
|
||
|
|
||
|
Ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
Goto fatal
|
||
|
Else-Ifstr(i) $($R0) == STATUS_FAILED
|
||
|
Goto fatal
|
||
|
Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
|
||
|
Goto successful
|
||
|
Endif
|
||
|
|
||
|
Set SrcDir = $($R1)
|
||
|
|
||
|
Endif
|
||
|
|
||
|
install "Install-Option"
|
||
|
ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
|
||
|
goto fatal
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
nofilestocopy =+
|
||
|
Ifint $(OldVersionExisted) != $(FALSE)
|
||
|
Goto writeparameters
|
||
|
Endif
|
||
|
|
||
|
set OEM_ABANDON_ON = TRUE
|
||
|
;
|
||
|
; Check for error so far, then create services
|
||
|
;
|
||
|
createservice =+
|
||
|
;
|
||
|
; Create the NETDTECT service.
|
||
|
;
|
||
|
Shell $(UtilityInf), CreateService, $(ServiceKeyName), $(ServiceDisplayName),+
|
||
|
$(ServiceSysPath), "kernel", "", {}, "", "%SystemRoot%\System32\IoLogMsg.dll"
|
||
|
|
||
|
Ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
Debug-Output "OEMNSVRP.INF: ShellCode error creating NETDTECT service"
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
|
||
|
Set RegistryErrorIndex = $($R0)
|
||
|
|
||
|
CloseRegKey $($R1)
|
||
|
CloseRegKey $($R2)
|
||
|
CloseRegKey $($R3)
|
||
|
|
||
|
Ifstr(i) $(RegistryErrorIndex) != NO_ERROR
|
||
|
EndWait
|
||
|
Debug-Output "OEMNSVRD.INF: Registry error: creating NETDTECT service"
|
||
|
CloseRegKey $($R2)
|
||
|
Goto fatalregistry
|
||
|
Endif
|
||
|
;
|
||
|
; Create or update the NetcardDlls value
|
||
|
;
|
||
|
Shell $(UtilityInf) UpdateDetectionDllNames
|
||
|
|
||
|
writeparameters = +
|
||
|
|
||
|
EndWait
|
||
|
|
||
|
goto successful
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; Binding section
|
||
|
;-----------------------------------------------
|
||
|
bindingadapter =+
|
||
|
set Error = "RPC INF file invoked during bindings review."
|
||
|
goto fatal
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; Removeadapter section
|
||
|
;-----------------------------------------------
|
||
|
|
||
|
removeadapter = +
|
||
|
;
|
||
|
; Remove NETDETECT service
|
||
|
;
|
||
|
Set OEM_ABANDON_OPTIONS = {$(ServiceKeyName)}
|
||
|
|
||
|
ForListDo $(OEM_ABANDON_OPTIONS)
|
||
|
debug-output "OEMNSVRP.INF: Remove component: "$($)
|
||
|
Shell $(UtilityInf), RemoveService, $($), $(UseSvcctrl)
|
||
|
EndForListDo
|
||
|
|
||
|
goto end
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; Upgrade Software section
|
||
|
;-----------------------------------------------
|
||
|
|
||
|
UpgradeSoftware = +
|
||
|
set Error = "Upgrade/update not supported for this product yet."
|
||
|
goto fatal
|
||
|
|
||
|
;
|
||
|
; Escape hatches
|
||
|
;
|
||
|
successful = +
|
||
|
goto end
|
||
|
|
||
|
;
|
||
|
; warning display
|
||
|
;
|
||
|
warning = +
|
||
|
Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), STATUS, $(Error)
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
ifstr(i) $($R1) == "OK"
|
||
|
goto $(to)
|
||
|
else-ifstr(i) $($R1) == "CANCEL"
|
||
|
goto $(from)
|
||
|
else
|
||
|
; Debug-Msg "Error Error Bad DLGEVENT"
|
||
|
goto "end"
|
||
|
endif
|
||
|
|
||
|
|
||
|
;
|
||
|
; non fatal error display
|
||
|
;
|
||
|
nonfatal = +
|
||
|
Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "NONFATAL", $(Error)
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
ifstr(i) $($R1) == "OK"
|
||
|
goto $(from)
|
||
|
else
|
||
|
goto "end"
|
||
|
endif
|
||
|
|
||
|
;
|
||
|
; Registry is broken
|
||
|
;
|
||
|
fatalregistry = +
|
||
|
Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
set Error = $($R0)
|
||
|
goto fatal
|
||
|
;
|
||
|
; fatal error display
|
||
|
;
|
||
|
fatal = +
|
||
|
Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
|
||
|
ifint $($ShellCode) != $(!SHELL_CODE_OK)
|
||
|
goto ShellCodeError
|
||
|
endif
|
||
|
|
||
|
goto setfailed
|
||
|
|
||
|
;
|
||
|
; Shelling error
|
||
|
;
|
||
|
ShellCodeError = +
|
||
|
set DlgType = "MessageBox"
|
||
|
set STF_MB_TITLE = $(ShellCodeErrorTitle)
|
||
|
set STF_MB_TEXT = $(ShellCodeErrorText)
|
||
|
set STF_MB_TYPE = 1
|
||
|
set STF_MB_ICON = 3
|
||
|
set STF_MB_DEF = 1
|
||
|
ui start "Error Message"
|
||
|
goto setfailed
|
||
|
|
||
|
setfailed = +
|
||
|
set CommonStatus = STATUS_FAILED
|
||
|
;
|
||
|
; If OEM_ABANDON_ON, we need to clean up the registry
|
||
|
;
|
||
|
ifstr(i) $(OEM_ABANDON_ON) == TRUE
|
||
|
set OEM_ABANDON_ON = FALSE
|
||
|
goto removeadapter
|
||
|
endif
|
||
|
goto end
|
||
|
|
||
|
end = +
|
||
|
goto term
|
||
|
|
||
|
term = +
|
||
|
|
||
|
Return $(CommonStatus)
|
||
|
|
||
|
;***************************************************************
|
||
|
; INSTALL SECTIONS
|
||
|
;***************************************************************
|
||
|
[Install-Option]
|
||
|
set STF_VITAL = ""
|
||
|
|
||
|
ifstr(i) $(AddCopy) == "YES"
|
||
|
|
||
|
;
|
||
|
; Add the files to the copy list
|
||
|
;
|
||
|
; BUGBUG: eliminate the "nt2" in the next line when Sunil fixes
|
||
|
; the other INF files
|
||
|
;
|
||
|
AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
|
||
|
|
||
|
endif
|
||
|
|
||
|
ifstr(i) $(DoCopy) == "YES"
|
||
|
|
||
|
;
|
||
|
; Copy files in the copy list
|
||
|
;
|
||
|
CopyFilesInCopyList
|
||
|
|
||
|
endif
|
||
|
|
||
|
ifstr(i) $(DoConfig) == "YES"
|
||
|
;
|
||
|
; Add product to registry
|
||
|
;
|
||
|
|
||
|
;
|
||
|
; Finish up
|
||
|
endif
|
||
|
|
||
|
Exit
|
||
|
|
||
|
[Install-Update]
|
||
|
set STF_VITAL = ""
|
||
|
set STF_OVERWRITE = "VERIFYSOURCEOLDER"
|
||
|
;set STF_VERSION = "YES"
|
||
|
|
||
|
AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
|
||
|
AddSectionFilesToCopyList Files-DLL-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)
|
||
|
|
||
|
CopyFilesInCopyList
|
||
|
|
||
|
exit
|