home *** CD-ROM | disk | FTP | other *** search
/ Compilation of drivers fo…old hardware for windows / drivers20000.iso / GARTnt.INF < prev    next >
Encoding:
Windows Setup INFormation  |  2006-03-31  |  3.0 KB  |  98 lines

  1. ;
  2. ; Copyright (c) 2000-2004 ATI Technologies Corporation
  3. ;
  4. ; GartNt.INF  -- This file contains descriptions of all the AGP Miniports
  5. ;             supported in Windows NT
  6. ;
  7. ; In order to install this driver, go to device manager, right-click on the PCI-PCI
  8. ; bridge which represents your AGP bridge and select "Properties". Then select the
  9. ; "Driver" page and push the "Update Driver" button. Go through the update driver
  10. ; wizard and on the "Locate Driver Files" page select "Specify a location" and then
  11. ; enter the location of your new INF and driver.
  12. ;
  13.  
  14. [Version]
  15. Signature="$WINDOWS NT$"
  16. Class=System
  17. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  18. Provider=%ATI%
  19. DriverVer=01/06/2004,5.1.2196.1009
  20. CatalogFile = atisgkaf.cat
  21.  
  22. ; =================== Common for all AGP devices =========================
  23. [DestinationDirs]
  24. DefaultDestDir = 12        ; DIRID_DRIVERS
  25.  
  26. [Manufacturer]
  27. %ATI_MFG%=ATI_AGP
  28.  
  29. [SourceDisksNames.x86]
  30. 1 = %DiskId%,,,""
  31.  
  32. [SourceDisksFiles]
  33. atisgkaf.SYS=1
  34.  
  35. [ControlFlags]
  36. ExcludeFromSelect=*
  37.  
  38. [AGP_Filter_Reg]
  39. HKR,,"UpperFilters", 0x00010000,"CABOAGP"
  40.  
  41. [pci_ServiceInstallSection]
  42. DisplayName    = %pci_svcdesc%
  43. ServiceType    = %SERVICE_KERNEL_DRIVER%
  44. StartType      = %SERVICE_BOOT_START%
  45. ErrorControl   = %SERVICE_ERROR_NORMAL%
  46. ServiceBinary  = %12%\pci.sys
  47. LoadOrderGroup = "Boot Bus Extender"
  48.  
  49. ; =================== ATI Chipset ========================
  50. [ATI_AGP]
  51. %PCI\VEN_1002&DEV_700f.DeviceDesc%=CABO_Install,PCI\VEN_1002&DEV_700f
  52. %PCI\VEN_1002&DEV_7010.DeviceDesc%=CABO_Install,PCI\VEN_1002&DEV_7010
  53. %PCI\VEN_1002&DEV_5838.DeviceDesc%=CABO_Install,PCI\VEN_1002&DEV_5838
  54. %PCI\VEN_1002&DEV_7838.DeviceDesc%=CABO_Install,PCI\VEN_1002&DEV_7838
  55.  
  56. [CABO_Install]
  57. CopyFiles=@atisgkaf.SYS
  58.  
  59. [CABO_Install.HW]
  60. AddReg = AGP_Filter_Reg
  61.  
  62. [CABO_Install.Services]
  63. AddService = caboagp,0,caboagp_ServiceInstallSection
  64. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  65.  
  66. [caboagp_ServiceInstallSection]
  67. DisplayName    = %caboagp_svcdesc%
  68. ServiceType    = %SERVICE_KERNEL_DRIVER%
  69. StartType      = %SERVICE_DEMAND_START%
  70. ErrorControl   = %SERVICE_ERROR_NORMAL%
  71. ServiceBinary  = %12%\atisgkaf.sys
  72. LoadOrderGroup = PnP Filter
  73.  
  74.  
  75. ; =================== STRINGS and CONSTANTS ========================
  76.  
  77. [Strings]
  78. ATI_MFG = "ATI"
  79. ATI = "ATI"
  80. PCI\VEN_1002&DEV_700f.DeviceDesc = "ATI U1/A3 Accelerated Graphics Port"
  81. PCI\VEN_1002&DEV_7010.DeviceDesc = "ATI RS200/RS200M/RS250M Accelerated Graphics Port"
  82. PCI\VEN_1002&DEV_5838.DeviceDesc = "ATI RS300/RS300M Accelerated Graphics Port"
  83. PCI\VEN_1002&DEV_7838.DeviceDesc = "ATI RS350 Accelerated Graphics Port"
  84. DiskId       = "ATI Technologies Inc. Installation DISK (AGP)"
  85.  
  86. ;service descriptions
  87. caboagp_svcdesc = "ATI Cabo AGP Filter"
  88. pci_svcdesc = "PCI Bus Driver"
  89.  
  90.  
  91. ;*******************************************
  92. ;Handy macro substitutions (non-localizable)
  93. SPSVCINST_ASSOCSERVICE = 0x00000002
  94. SERVICE_KERNEL_DRIVER  = 1
  95. SERVICE_BOOT_START     = 0
  96. SERVICE_DEMAND_START   = 3
  97. SERVICE_ERROR_NORMAL   = 1
  98.