Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.5 KiB

  1. ;
  2. ; Copyright (c) 1999 Microsoft Corporation
  3. ;
  4. ; AGP.INF -- This file contains descriptions of all the AGP Miniports
  5. ; supported in Windows NT
  6. ;
  7. ; You will need to change the names and PCI IDs to reflect your part. In order
  8. ; to install this driver, go to device manager, right-click on the PCI-PCI bridge
  9. ; which represents your AGP bridge and select "Properties". Then select the "Driver"
  10. ; page and push the "Update Driver" button. Go through the update driver wizard and
  11. ; on the "Locate Driver Files" page select "Specify a location" and then enter the
  12. ; location of your new INF and driver. I will have this sample and instructions
  13. ; added to the DDK.
  14. ;
  15. ;
  16. [Version]
  17. Signature="$WINDOWS NT$"
  18. Class=System
  19. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  20. Provider=%MSFT%
  21. LayoutFile=layout.inf
  22. DriverVer=08/02/1999,5.00.2072
  23. ; =================== Common for all AGP devices =========================
  24. [DestinationDirs]
  25. DefaultDestDir = 12 ; DIRID_DRIVERS
  26. [Manufacturer]
  27. %INTEL_MFG%=INTEL_AGP
  28. [AGP_Filter_Reg]
  29. HKR,,"UpperFilters", 0x00010000,"AGP440"
  30. [pci_ServiceInstallSection]
  31. DisplayName = %pci_svcdesc%
  32. ServiceType = %SERVICE_KERNEL_DRIVER%
  33. StartType = %SERVICE_BOOT_START%
  34. ErrorControl = %SERVICE_ERROR_NORMAL%
  35. ServiceBinary = %12%\pci.sys
  36. LoadOrderGroup = "Boot Bus Extender"
  37. ; =================== INTEL 440XX ========================
  38. [INTEL_AGP]
  39. %PCI\VEN_8086&DEV_7181.DeviceDesc%=AGP440_Install,PCI\VEN_8086&DEV_7181
  40. [AGP440_Install]
  41. CopyFiles=@AGP440.SYS
  42. [AGP440_Install.HW]
  43. AddReg = AGP_Filter_Reg
  44. [AGP440_Install.Services]
  45. AddService = agp440,0,agp440_ServiceInstallSection
  46. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  47. [agp440_ServiceInstallSection]
  48. DisplayName = %agp440_svcdesc%
  49. ServiceType = %SERVICE_KERNEL_DRIVER%
  50. StartType = %SERVICE_DEMAND_START%
  51. ErrorControl = %SERVICE_ERROR_NORMAL%
  52. ServiceBinary = %12%\agp440.sys
  53. LoadOrderGroup = PnP Filter
  54. ; =================== STRINGS and CONSTANTS ========================
  55. [Strings]
  56. INTEL_MFG = "Intel"
  57. MSFT = "Microsoft"
  58. PCI\VEN_8086&DEV_7181.DeviceDesc = "Intel 440LX Accelerated Graphics Port"
  59. ;service descriptions
  60. agp440_svcdesc = "Intel 440 AGP Filter"
  61. pci_svcdesc = "PCI Bus Driver"
  62. ;*******************************************
  63. ;Handy macro substitutions (non-localizable)
  64. SPSVCINST_ASSOCSERVICE = 0x00000002
  65. SERVICE_KERNEL_DRIVER = 1
  66. SERVICE_BOOT_START = 0
  67. SERVICE_DEMAND_START = 3
  68. SERVICE_ERROR_NORMAL = 1