linux.inf 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ; Based on template INF file found at
  2. ; <https://msdn.microsoft.com/en-us/library/ff570620.aspx>
  3. ; which was:
  4. ; Copyright (c) Microsoft Corporation
  5. ; and released under the MLPL as found at:
  6. ; <http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL>.
  7. ; For use only on Windows operating systems.
  8. [Version]
  9. Signature = "$Windows NT$"
  10. Class = Net
  11. ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
  12. Provider = %Linux%
  13. DriverVer = 06/21/2006,6.0.6000.16384
  14. [Manufacturer]
  15. %Linux% = LinuxDevices,NTx86,NTamd64,NTia64
  16. ; Decoration for x86 architecture
  17. [LinuxDevices.NTx86]
  18. %LinuxDevice% = RNDIS.NT.5.1, USB\VID_0525&PID_a4a2, USB\VID_1d6b&PID_0104&MI_00
  19. ; Decoration for x64 architecture
  20. [LinuxDevices.NTamd64]
  21. %LinuxDevice% = RNDIS.NT.5.1, USB\VID_0525&PID_a4a2, USB\VID_1d6b&PID_0104&MI_00
  22. ; Decoration for ia64 architecture
  23. [LinuxDevices.NTia64]
  24. %LinuxDevice% = RNDIS.NT.5.1, USB\VID_0525&PID_a4a2, USB\VID_1d6b&PID_0104&MI_00
  25. ;@@@ This is the common setting for setup
  26. [ControlFlags]
  27. ExcludeFromSelect=*
  28. ; DDInstall section
  29. ; References the in-build Netrndis.inf
  30. [RNDIS.NT.5.1]
  31. Characteristics = 0x84 ; NCF_PHYSICAL + NCF_HAS_UI
  32. BusType = 15
  33. ; NEVER REMOVE THE FOLLOWING REFERENCE FOR NETRNDIS.INF
  34. include = netrndis.inf
  35. needs = Usb_Rndis.ndi
  36. AddReg = Rndis_AddReg_Vista
  37. ; DDInstal.Services section
  38. [RNDIS.NT.5.1.Services]
  39. include = netrndis.inf
  40. needs = Usb_Rndis.ndi.Services
  41. ; Optional registry settings. You can modify as needed.
  42. [RNDIS_AddReg_Vista]
  43. HKR, NDI\params\VistaProperty, ParamDesc, 0, %Vista_Property%
  44. HKR, NDI\params\VistaProperty, type, 0, "edit"
  45. HKR, NDI\params\VistaProperty, LimitText, 0, "12"
  46. HKR, NDI\params\VistaProperty, UpperCase, 0, "1"
  47. HKR, NDI\params\VistaProperty, default, 0, " "
  48. HKR, NDI\params\VistaProperty, optional, 0, "1"
  49. ; No sys copyfiles - the sys files are already in-build
  50. ; (part of the operating system).
  51. ; We do not support XP SP1-, 2003 SP1-, ME, 9x.
  52. [Strings]
  53. Linux = "Linux Developer Community"
  54. LinuxDevice = "Linux USB Ethernet/RNDIS Gadget"
  55. Vista_Property = "Optional Vista Property"