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.

92 lines
3.1 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. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0520",0x00030003,80,00,00,00,00,00,00,00
  31. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0521",0x00030003,80,00,00,00,00,00,00,00
  32. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","102B0525",0x00030003,80,00,00,00,00,00,00,00
  33. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","10DE0100",0x00030003,00,01,00,00,00,00,00,00
  34. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53339102",0x00030003,00,01,00,00,00,00,00,00
  35. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53338C10",0x00030003,00,01,00,00,00,00,00,00
  36. HKLM,"SYSTEM\CurrentControlSet\Control\AGP","53338C12",0x00030003,00,01,00,00,00,00,00,00
  37. [pci_ServiceInstallSection]
  38. DisplayName = %pci_svcdesc%
  39. ServiceType = %SERVICE_KERNEL_DRIVER%
  40. StartType = %SERVICE_BOOT_START%
  41. ErrorControl = %SERVICE_ERROR_NORMAL%
  42. ServiceBinary = %12%\pci.sys
  43. LoadOrderGroup = "Boot Bus Extender"
  44. ; =================== INTEL 440XX ========================
  45. [INTEL_AGP]
  46. %PCI\VEN_8086&DEV_7181.DeviceDesc%=AGP440_Install,PCI\VEN_8086&DEV_7181
  47. [AGP440_Install]
  48. CopyFiles=@AGP440.SYS
  49. [AGP440_Install.HW]
  50. AddReg = AGP_Filter_Reg
  51. [AGP440_Install.Services]
  52. AddService = agp440,0,agp440_ServiceInstallSection
  53. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  54. [agp440_ServiceInstallSection]
  55. DisplayName = %agp440_svcdesc%
  56. ServiceType = %SERVICE_KERNEL_DRIVER%
  57. StartType = %SERVICE_DEMAND_START%
  58. ErrorControl = %SERVICE_ERROR_NORMAL%
  59. ServiceBinary = %12%\agp440.sys
  60. LoadOrderGroup = PnP Filter
  61. ; =================== STRINGS and CONSTANTS ========================
  62. [Strings]
  63. INTEL_MFG = "Intel"
  64. MSFT = "Microsoft"
  65. PCI\VEN_8086&DEV_7181.DeviceDesc = "Intel 440LX Accelerated Graphics Port"
  66. ;service descriptions
  67. agp440_svcdesc = "Intel 440 AGP Filter"
  68. pci_svcdesc = "PCI Bus Driver"
  69. ;*******************************************
  70. ;Handy macro substitutions (non-localizable)
  71. SPSVCINST_ASSOCSERVICE = 0x00000002
  72. SERVICE_KERNEL_DRIVER = 1
  73. SERVICE_BOOT_START = 0
  74. SERVICE_DEMAND_START = 3
  75. SERVICE_ERROR_NORMAL = 1