home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1998 October / VPR9810B.BIN / DRIVER / iodata / PGVX210 / pgvx210.exe / DISK.EXE / WINNT35 / OEMSETUP.INF < prev    next >
INI File  |  1996-12-03  |  18KB  |  584 lines

  1. ;----------------
  2. ;  VIRGE/VX !!!!
  3. ;-----------------------------------------------------------------------
  4. ; OPTION TYPE
  5. ; -----------
  6. ; This identifies the Option type we are dealing with.  The different
  7. ; possible types are:
  8. ;
  9. ; COMPUTER, VIDEO, MOUSE, KEYBOARD, LAYOUT, SCSI, PRINTER, ...
  10. ;-----------------------------------------------------------------------
  11.  
  12. [Identification]
  13.     OptionType = VIDEO
  14.  
  15. ;-----------------------------------------------------------------------
  16. ; LANGUAGES SUPPORTED
  17. ; -------------------
  18. ;
  19. ; The languages supported by the OEM INF, For every language supported
  20. ; we need to have a separate text section for every displayable text
  21. ; section.
  22. ;
  23. ;-----------------------------------------------------------------------
  24.  
  25. [LanguagesSupported]
  26.     ENG
  27.  
  28. ;-----------------------------------------------------------------------
  29. ; OPTION LIST
  30. ; -----------
  31. ; This section lists the OEM Option key names.  These keys are locale
  32. ; independent and used to represent the option in a locale independent
  33. ; manner.
  34. ;
  35. ;-----------------------------------------------------------------------
  36.  
  37. ;
  38. ; Option list order: Option = Miniport driver, BitsPerPel, XResolution, YResolution, VRefresh, Interlaced
  39. ;
  40. ; If you don't want to create a VRefresh or Interlaced value under the service
  41. ; parameters then use the value ""
  42. ;
  43.  
  44. [Options]
  45.     "I-O DATA GA-PG3DVXx/PCI"        = gapg3dvx,    8, 640,  480   , 60 , 0
  46.  
  47. ;
  48. ; This maps detected options into the options we support
  49. ;
  50. ; Format: DetectedOption = MappedOption
  51. ;
  52.  
  53. [MapOfOptions]
  54.     "VGA"                       = "VGA"
  55.     "COMPAQ AVGA"               = "VGA"
  56.     "COMPAQ AGB"                = "VGA"
  57.     "8514 MONITOR UNKNOWN"      = "VGA"
  58.     "8514 VGA MONITOR"          = "VGA"
  59.     "8514 8503 MONO"            = "VGA"
  60.     "8514 8514 GAD"             = "VGA"
  61.     "GENOA VGA"                 = "VGA"
  62.     "VIDEO7 VGA DRAM"           = "VIDEO7 VGA VRAM 640x480x4"
  63.     "VIDEO7 VGA VRAM"           = "VIDEO7 VGA VRAM 640x480x4"
  64.     "TRIDENT VGA"               = "VGA"
  65.     "TRIDENT VGA 9100"          = "VGA"
  66.     "PARADISE VGA"              = "VGA"
  67.     "PARADISE VGA PROM"         = "VGA"
  68.     "PARADISE VGA CHIP 1F"      = "VGA"
  69.     "ATI VGA"                   = "VGA"
  70.     "ATI VGA WONDDER3"          = "VGA"
  71.     "TSENGLAB VGA ET3000"       = "VGA"
  72.     "TSENGLAB VGA ET4000"       = "TSENGLAB VGA ET4000 640x480x4x60"
  73.     "CIRRUS VGA"                = "VGA"
  74.     "CIRRUS VGA 610-620 REVC"   = "VGA"
  75.     "XGA"                       = "XGA 640x480x8"
  76.     "DELL DGX"                  = "DELL DGX 640x480x8"
  77.     "S3 VGA"                    = "S3 VGA 640x480x8"
  78.     "PRODESIGNER II"            = "TSENGLAB VGA ET4000 640x480x4x60"
  79.  
  80.  
  81. ;
  82. ; Order of the information:
  83. ;
  84. ; Port driver = Type, Group, ErrorControl, Tag, InstalledDisplay, VgaCompatible( 0/1 ), EventMessageFile, TypesSupported
  85. ;
  86.  
  87. [MiniportDrivers]
  88.     gapg3dvx   = !SERVICE_KERNEL_DRIVER, Video, !SERVICE_ERROR_NORMAL, 11,  {gapg3dvx}, 0 , %SystemRoot%\System32\IoLogMsg.dll , 7
  89.  
  90.  
  91. ;-----------------------------------------------------------------------
  92. ; OPTION TEXT SECTION
  93. ; -------------------
  94. ; These are text strings used to identify the option to the user.  There
  95. ; are separate sections for each language supported.  The format of the
  96. ; section name is "OptionsText" concatenated with the Language represented
  97. ; by the section.
  98. ;
  99. ;-----------------------------------------------------------------------
  100.  
  101. [OptionsTextENG]
  102.     "I-O DATA GA-PG3DVXx/PCI"    = "I-O DATA GA-PG3DVXx/PCI"
  103.  
  104.  
  105.  
  106. ;---------------------------------------------------------------------------
  107. ; 1. Identify
  108. ;
  109. ; DESCRIPTION:   To verify that this INF deals with the same type of options
  110. ;                as we are choosing currently.
  111. ;
  112. ; INPUT:         None
  113. ;
  114. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  115. ;                $($R1): Option Type (COMPUTER ...)
  116. ;                $($R2): Diskette description
  117. ;---------------------------------------------------------------------------
  118.  
  119. [Identify]
  120.     ;
  121.     ;
  122.     read-syms Identification
  123.  
  124.     set Status     = STATUS_SUCCESSFUL
  125.     set Identifier = $(OptionType)
  126.     set Media      = #("Source Media Descriptions", 1, 1)
  127.  
  128.     Return $(Status) $(Identifier) $(Media)
  129.  
  130.  
  131.  
  132. ;------------------------------------------------------------------------
  133. ; 2. ReturnOptions:
  134. ;
  135. ; DESCRIPTION:   To return the option list supported by this INF and the
  136. ;                localised text list representing the options.
  137. ;
  138. ;
  139. ; INPUT:         $($0):  Language used. ( ENG | FRN | ... )
  140. ;
  141. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL |
  142. ;                                STATUS_NOLANGUAGE
  143. ;                                STATUS_FAILED
  144. ;
  145. ;                $($R1): Option List
  146. ;                $($R2): Option Text List
  147. ;------------------------------------------------------------------------
  148.  
  149. [ReturnOptions]
  150.     ;
  151.     ;
  152.     set Status        = STATUS_FAILED
  153.     set OptionList     = {}
  154.     set OptionTextList = {}
  155.  
  156.     ;
  157.     ; Check if the language requested is supported
  158.     ;
  159.     set LanguageList = ^(LanguagesSupported, 1)
  160.     Ifcontains(i) $($0) in $(LanguageList)
  161.     goto returnoptions
  162.     else
  163.     set Status = STATUS_NOLANGUAGE
  164.     goto finish_ReturnOptions
  165.     endif
  166.  
  167.     ;
  168.     ; form a list of all the options and another of the text representing
  169.     ;
  170.  
  171. returnoptions = +
  172.     set OptionList     = ^(Options, 0)
  173.     set OptionTextList = ^(OptionsText$($0), 1)
  174.     set Status         = STATUS_SUCCESSFUL
  175.  
  176. finish_ReturnOptions = +
  177.     Return $(Status) $(OptionList) $(OptionTextList)
  178.  
  179.  
  180.  
  181. ;---------------------------------------------------------------------------
  182. ; MapToSupportedOption
  183. ;
  184. ; DESCRIPTION:   To map a hardware detected option to the NT Supported
  185. ;                option which represents it.
  186. ;
  187. ; INPUT:         $($0): Option
  188. ;
  189. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  190. ;                $($R1): Mapped Option
  191. ;
  192. ;---------------------------------------------------------------------------
  193.  
  194. [MapToSupportedOption]
  195.     ;
  196.     set Status = STATUS_FAILED
  197.     set MappedOption = $($0)
  198.  
  199.     ;
  200.     ; If the option is one we can support using one of our standard options
  201.     ; then map it to the standard option else map it to the default option
  202.     ; which is VGA.
  203.     ;
  204.  
  205.     set OptionList = ^(MapOfOptions, 0)
  206.     ifcontains $($0) in $(OptionList)
  207.     set MappedOption = #(MapOfOptions, $($0), 1)
  208.     else
  209.     set MappedOption = "VGA"
  210.     endif
  211.  
  212.     set Status = STATUS_SUCCESSFUL
  213.     Return $(Status) $(MappedOption)
  214.  
  215.  
  216.  
  217. [ServicesEntry]
  218.     CurrentEntry = "" ? $(!LIBHANDLE) GetDevicemapValue Video \Device\Video0
  219.  
  220.  
  221. ;
  222. ; InstallOption:
  223. ;
  224. ; FUNCTION:  To copy files representing Options
  225. ;            To configure the installed option
  226. ;            To update the registry for the installed option
  227. ;
  228. ; INPUT:     $($0):  Language to use
  229. ;            $($1):  OptionID to install
  230. ;            $($2):  SourceDirectory
  231. ;            $($3):  AddCopy  (YES | NO)
  232. ;            $($4):  DoCopy   (YES | NO)
  233. ;            $($5):  DoConfig (YES | NO)
  234. ;
  235. ; OUTPUT:    $($R0): STATUS: STATUS_SUCCESSFUL |
  236. ;                            STATUS_NOLANGUAGE |
  237. ;                            STATUS_USERCANCEL |
  238. ;                            STATUS_FAILED
  239. ;
  240.  
  241. [InstallOption]
  242.  
  243.     ;
  244.     ; Set default values for
  245.     ;
  246.     set Status       = STATUS_FAILED
  247.     set DrivesToFree = {}
  248.  
  249.     ;
  250.     ; extract parameters
  251.     ;
  252.     set Option   = $($1)
  253.     set SrcDir   = $($2)
  254.     set AddCopy  = $($3)
  255.     set DoCopy   = $($4)
  256.     set DoConfig = $($5)
  257.  
  258.     ;
  259.     ; Check if the language requested is supported
  260.     ;
  261.     set LanguageList = ^(LanguagesSupported, 1)
  262.     Ifcontains(i) $($0) in $(LanguageList)
  263.     else
  264.     set Status = STATUS_NOLANGUAGE
  265.     goto finish_InstallOption
  266.     endif
  267.     read-syms Strings$($0)
  268.  
  269.     ;
  270.     ; check to see if Option is supported.
  271.     ;
  272.  
  273.     set OptionList = ^(Options, 0)
  274.     ifcontains $(Option) in $(OptionList)
  275.     else
  276.     goto finish_InstallOption
  277.     endif
  278.     set OptionList = ""
  279.  
  280.     ;
  281.     ; Option has been defined already
  282.     ;
  283.     set MiniportDriver    = #(Options, $(Option), 1)
  284.     set BitsPerPel        = #(Options, $(Option), 2)
  285.     set XResolution       = #(Options, $(Option), 3)
  286.     set YResolution       = #(Options, $(Option), 4)
  287.     set VRefresh          = #(Options, $(Option), 5)
  288.     set Interlaced        = #(Options, $(Option), 6)
  289.  
  290.     set Type              = $(#(MiniportDrivers, $(MiniportDriver), 1))
  291.     set Group             =   #(MiniportDrivers, $(MiniportDriver), 2)
  292.     set ErrorControl      = $(#(MiniportDrivers, $(MiniportDriver), 3))
  293.     set Tag               =   #(MiniportDrivers, $(MiniportDriver), 4)
  294.     set InstalledDisplays =   #(MiniportDrivers, $(MiniportDriver), 5)
  295.     set VgaCompatible     =   #(MiniportDrivers, $(MiniportDriver), 6)
  296.     set EventMessageFile  =   #(MiniportDrivers, $(MiniportDriver), 7)
  297.     set TypesSupported    =   #(MiniportDrivers, $(MiniportDriver), 8)
  298.  
  299.     read-syms ServicesEntry
  300.     detect    ServicesEntry
  301.  
  302. installtheoption = +
  303.  
  304.     ;
  305.     ; Code to add files to copy list
  306.     ;
  307.  
  308.     ifstr(i) $(AddCopy) == "YES"
  309.     set DoActualCopy = NO
  310.     set FileToCheck = #(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  311.     LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\drivers\"$(FileToCheck)
  312.     ifstr(i) $(STATUS) == NO
  313.         set DoActualCopy = YES
  314.         goto addfiles
  315.     endif
  316.     ForListDo $(InstalledDisplays)
  317.         set FileToCheck = #(Files-DisplayDLLs, $($), 2)
  318.         LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\"$(FileToCheck)
  319.         ifstr(i) $(STATUS) == NO
  320.         set DoActualCopy = YES
  321.         endif
  322.     EndForListDo
  323.  
  324. addfiles = +
  325.     ifstr(i) $(DoActualCopy) == NO
  326.         shell "subroutn.inf" DriversExist $($0) $(String1)
  327.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  328.         Debug-Output "VIDEO.INF: shelling DriversExist failed"
  329.         goto finish_InstallOption
  330.         endif
  331.  
  332.         ifstr(i) $($R0) == STATUS_CURRENT
  333.         else-ifstr(i) $($R0) == STATUS_NEW
  334.         set DoActualCopy = YES
  335.         else-ifstr(i) $($R0) == STATUS_USERCANCEL
  336.         Debug-Output "VIDEO.INF: User cancelled video installation"
  337.         goto finish_InstallOption
  338.         else
  339.         Debug-Output "VIDEO.INF: Error reported in DriversExist routine in SUBROUTN.INF"
  340.         goto finish_InstallOption
  341.         endif
  342.     endif
  343.  
  344.     ifstr(i) $(DoActualCopy) == YES
  345.  
  346.         shell "subroutn.inf" DoAskSourceEx $(SrcDir) $(String2)
  347.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  348.         Debug-Output "VIDEO.INF: shelling DoAskSourceEx failed"
  349.         goto finish_InstallOption
  350.         endif
  351.  
  352.         ifstr(i) $($R0) == STATUS_SUCCESSFUL
  353.         set SrcDir = $($R1)
  354.         ifstr(i) $($R2) != ""
  355.             set DrivesToFree = >($(DrivesToFree), $($R2))
  356.         endif
  357.         else
  358.         Debug-Output "VIDEO.INF: User cancelled asking source."
  359.         goto finish_InstallOption
  360.         endif
  361.  
  362.         install Install-AddCopyOption
  363.         ifstr(i) $(STF_INSTALL_OUTCOME) != "STF_SUCCESS"
  364.         Debug-Output "VIDEO.INF: Adding video files to copy list failed"
  365.         goto finish_InstallOption
  366.         endif
  367.     else
  368.         set DoCopy = NO
  369.     endif
  370.  
  371.     endif
  372.  
  373.     ifstr(i) $(DoCopy) == "YES"
  374.     read-syms ProgressCopy$($0)
  375.     install Install-DoCopyOption
  376.     ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  377.         Debug-Output "Copying files failed"
  378.         goto finish_InstallOption
  379.     else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  380.         set Status = STATUS_USERCANCEL
  381.         goto finish_InstallOption
  382.     endif
  383.     endif
  384.  
  385.     ifstr(i) $(DoConfig) == "YES"
  386.  
  387.     ;
  388.     ; first run a privilege check on modifying the setup node
  389.     ;
  390.  
  391.     shell "registry.inf" CheckSetupModify
  392.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  393.         goto finish_InstallOption
  394.     endif
  395.  
  396.     ifstr(i) $($R0) != STATUS_SUCCESSFUL
  397.         goto finish_InstallOption
  398.     endif
  399.  
  400.     ;
  401.     ; first make a new video entry, the entry is created automatically
  402.     ; enabled
  403.     ;
  404.  
  405.     set ServiceNode   = $(MiniportDriver)
  406.     set ServiceBinary = %SystemRoot%\System32\drivers\#(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  407.  
  408.     set ServicesValues   = { +
  409.         {Type,           0, $(!REG_VT_DWORD),     $(Type)                  }, +
  410.         {Start,          0, $(!REG_VT_DWORD),     $(!SERVICE_SYSTEM_START) }, +
  411.         {Group,          0, $(!REG_VT_SZ),        $(Group)                 }, +
  412.         {ErrorControl,   0, $(!REG_VT_DWORD),     $(ErrorControl)          }, +
  413.         {Tag,            0, $(!REG_VT_DWORD),     $(Tag)                   }, +
  414.         {BinaryPathName, 0, $(!REG_VT_EXPAND_SZ), $(ServiceBinary)         }  +
  415.         }
  416.  
  417.     ; Added Device Description below -BBD
  418.        set DeviceDescription = $(!Option)
  419. ;    set DeviceDescription = "S3 Compatible Display Adapter"
  420.  
  421.     set ParametersValues = { +
  422.         {"Device Description",        0, $(!REG_VT_SZ),       $(DeviceDescription) }, +
  423.         {InstalledDisplayDrivers,     0, $(!REG_VT_MULTI_SZ), $(InstalledDisplays) }, +
  424.         {VgaCompatible,               0, $(!REG_VT_DWORD),    $(VgaCompatible)     }, +
  425.         {DefaultSettings.BitsPerPel,  0, $(!REG_VT_DWORD),    $(BitsPerPel)        }, +
  426.         {DefaultSettings.XResolution, 0, $(!REG_VT_DWORD),    $(XResolution)       }, +
  427.         {DefaultSettings.YResolution, 0, $(!REG_VT_DWORD),    $(YResolution)       }  +
  428.         }
  429.  
  430.     ifstr(i) $(VRefresh) != ""
  431.         set VRefreshValue = {DefaultSettings.VRefresh, 0, $(!REG_VT_DWORD), $(VRefresh)}
  432.         set ParametersValue = >($(ParametersValue), $(VRefreshValue))
  433.     endif
  434.  
  435.     ifstr(i) $(Interlaced) != ""
  436.         set InterlacedValue = {DefaultSettings.Interlaced, 0, $(!REG_VT_DWORD), $(Interlaced)}
  437.         set ParametersValue = >($(ParametersValue), $(InterlacedValue))
  438.     endif
  439.  
  440.     set DeviceValues     = {}
  441.     set EventLogValues   = { +
  442.         {EventMessageFile, 0, $(!REG_VT_EXPAND_SZ), $(EventMessageFile) }, +
  443.         {TypesSupported,   0, $(!REG_VT_DWORD),     $(TypesSupported)   }  +
  444.         }
  445.  
  446.     shell "registry.inf"  MakeServicesEntry $(ServiceNode)      +
  447.                         $(ServicesValues)   +
  448.                         $(ParametersValues) +
  449.                         $(DeviceValues)     +
  450.                         $(EventLogValues)   +
  451.                         Device0
  452.  
  453.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  454.         Debug-Output "Couldn't execute MakeServicesEntry in registry.inf"
  455.         goto finish_InstallOption
  456.     endif
  457.  
  458.     ifstr(i) $($R0) != STATUS_SUCCESSFUL
  459.         Debug-Output "MakeServicesEntry failed for video"
  460.         goto finish_InstallOption
  461.     endif
  462.  
  463.     ;
  464.     ;
  465.     ; then disable the previous video entry
  466.     ;
  467.  
  468.     ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  469.         ifstr(i) $(CurrentEntry) != VGA
  470.         ifstr(i) $(CurrentEntry) != ""
  471.             shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_DISABLED)
  472.  
  473.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  474.             Debug-Output "Couldn't find DisableServicesEntry in registry.inf"
  475.             goto errorconfig
  476.             endif
  477.  
  478.             ifstr(i) $($R0) != STATUS_SUCCESSFUL
  479.             Debug-Output "DisableServices entry failed"
  480.             endif
  481.         endif
  482.         endif
  483.     endif
  484.  
  485.     goto configdone
  486.  
  487. errorconfig = +
  488.     ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  489.         shell "registry.inf" ModifyServicesEntry $(MiniportDriver) $(!SERVICE_DISABLED)
  490.         ifstr(i) $(CurrentEntry) != ""
  491.         shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_SYSTEM_START)
  492.         endif
  493.     endif
  494.     goto finish_InstallOption
  495.  
  496. configdone = +
  497.  
  498.     endif
  499.  
  500.     set Status = STATUS_SUCCESSFUL
  501.  
  502. finish_InstallOption = +
  503.     ForListDo $(DrivesToFree)
  504.     LibraryProcedure STATUS,$(!LIBHANDLE), DeleteNetConnection $($) "TRUE"
  505.     EndForListDo
  506.  
  507.     Return $(Status)
  508.  
  509.  
  510. [Install-AddCopyOption]
  511.  
  512.     set STF_VITAL = ""
  513.     ;
  514.     ; Add the files to the copy list
  515.     ;
  516.     AddSectionKeyFileToCopyList   Files-DisplayMiniportDrivers   +
  517.                   $(MiniportDriver)              +
  518.                   $(SrcDir)                      +
  519.                   $(!STF_WINDOWSSYSPATH)\drivers
  520.  
  521.     ForListDo $(InstalledDisplays)
  522.     AddSectionKeyFileToCopyList   Files-DisplayDLLs          +
  523.                       $($)                       +
  524.                       $(SrcDir)                  +
  525.                       $(!STF_WINDOWSSYSPATH)
  526.  
  527.     EndForListDo
  528.  
  529.     exit
  530.  
  531.  
  532. [Install-DoCopyOption]
  533.  
  534.     ;
  535.     ; Copy files in the copy list
  536.     ;
  537.     CopyFilesInCopyList
  538.     exit
  539.  
  540. ;**************************************************************************
  541. ; PROGRESS GUAGE VARIABLES
  542. ;**************************************************************************
  543.  
  544. [ProgressCopyENG]
  545.     ProCaption   = "Windows NT セットアップ"
  546.     ProCancel    = "キャンセル"
  547.     ProCancelMsg = "Windows NT は正しく組み込まれていません。"+
  548.                    "ファイルのコピーを中止しますか?"
  549.     ProCancelCap = "セットアップ メッセージ"
  550.     ProText1     = "コピー元:"
  551.     ProText2     = "コピー先:"
  552.  
  553. [StringsENG]
  554.     String1 = "ディスプレイ"
  555.     String2 = "Windows ディスプレイドライバファイルのパス名を入力してください。"+
  556.               "その後、[続行]を押します。"
  557.  
  558.  
  559. ;-----------------------------------------------------------------------
  560. ; SOURCE MEDIA DESCRIPTIONS
  561. ; -------------------------
  562. ; The OEM should list all the diskette labels here.  The source media
  563. ; description is used during copy to prompt the user for a diskette
  564. ; if the source is diskettes.
  565. ;
  566. ; Use 1 = "Diskette 1 Label" , TAGFILE = disk1
  567. ;     2 = "Diskette 2 Label" , TAGFILE = disk2
  568. ;     ...
  569. ;-----------------------------------------------------------------------
  570.  
  571. ;--------------------------------------------------------------------
  572. ; THE SECTIONS BELOW SHOULD BE AUTOMATICALLY GENERATED BY THE EXCEL
  573. ; SPREAD SHEETS
  574. ;--------------------------------------------------------------------
  575.  
  576. [Source Media Descriptions]
  577.     1  =
  578.  
  579. [Files-DisplayDLLs]
  580. gapg3dvx = 1,gapg3dvx.dll , SIZE=999
  581.  
  582. [Files-DisplayMiniportDrivers]
  583. gapg3dvx = 1,gapg3dvx.sys , SIZE=999
  584.