Cagiano

AMD PCI Root Bus Lower Filter

Nov 1st, 2014
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. ;
  2. ; Copyright (c) 2011 AMD
  3. ;
  4.  
  5. [Version]
  6. Signature="$WINDOWS NT$"
  7. Class=System
  8. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  9. Provider=%AMD%
  10.  
  11. DriverVer=12/12/2013, 13.251.3.0000
  12.  
  13. CatalogFile=amdkmpfd.cat
  14.  
  15. ;[ClassInstall32]
  16. ;AddReg=system_class_addreg
  17.  
  18. ;[system_class_addreg]
  19. ;HKR,,,,%SystemClassName%
  20. ;HKR,,Icon,,"-27"
  21.  
  22. [DestinationDirs]
  23. Drivers_Dir = 12
  24.  
  25. [SourceDisksNames.x86]
  26. 1 = %DISK_NAME%,,,""
  27.  
  28. [SourceDisksNames.amd64]
  29. 1 = %DISK_NAME%,,,""
  30.  
  31.  
  32. [SourceDisksFiles]
  33. amdkmpfd.sys = 1,,
  34.  
  35. [ControlFlags]
  36. ExcludeFromSelect=*
  37.  
  38. [Manufacturer]
  39. %AMD%=AMD_KMPFD,NTAMD64
  40.  
  41. [AMD_KMPFD.NTAMD64]
  42. %PCI\AMDPCIE.DeviceDesc%=AMDKMPFD_Install, *pnp0a03
  43. %PCI\AMDPCIE.DeviceDesc%=AMDKMPFD_Install, *pnp0a08
  44.  
  45. [AMDKMPFD_Install]
  46. Include = machine.inf ; The function driver
  47. Needs = PCI_DRV_ROOT ; Install section for the function driver
  48.  
  49. CopyFiles=Drivers_Dir
  50. ;Reboot
  51.  
  52. [Drivers_Dir]
  53. amdkmpfd.sys,,,2
  54.  
  55. [AMDKMPFD_Install.HW]
  56. AddReg = AMDKMPFD_Filter_Reg
  57. Include = machine.inf ; The function driver
  58. Needs = PCI_DRV_ROOT.HW ; Install section for the function driver
  59.  
  60. [AMDKMPFD_Filter_Reg]
  61. HKR,,"LowerFilters", 0x00010008,"amdkmpfd"
  62.  
  63. [AMDKMPFD_Install.Services]
  64. AddService = amdkmpfd,,AMDKMPFD_ServiceInstallSection
  65. Include = machine.inf ; The function driver
  66. Needs = PCI_DRV_ROOT.Services ; Install section for the function driver
  67.  
  68. [AMDKMPFD_ServiceInstallSection]
  69. DisplayName = %AMDKMPFD_svcdesc%
  70. ServiceType = %SERVICE_KERNEL_DRIVER%
  71. StartType = %SERVICE_BOOT_START%
  72. ErrorControl = %SERVICE_ERROR_NORMAL%
  73. ServiceBinary = %12%\amdkmpfd.sys
  74. LoadOrderGroup = PnP Filter
  75.  
  76. [Strings]
  77. AMD = "AMD"
  78. PCI\AMDPCIE.DeviceDesc = "Pci Bus"
  79. SystemClassName = "System devices"
  80. AMDKMPFD_svcdesc = "AMD PCI Root Bus Lower Filter"
  81. DISK_NAME = "AMD PCIE Install Disk"
  82. SPSVCINST_ASSOCSERVICE = 0x00000002
  83. SERVICE_KERNEL_DRIVER = 1
  84. SERVICE_BOOT_START = 0
  85. SERVICE_DEMAND_START = 3
  86. SERVICE_ERROR_NORMAL = 1
Advertisement
Add Comment
Please, Sign In to add comment