From a8d907d704eaedc2bad7c1123dd231c551313a6d Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sat, 31 Aug 2013 11:23:41 +0200 Subject: Add DefaultInstall section to all INF driver files for easier installation. --- Bootloaders/CDC/LUFA CDC Bootloader.inf | 5 +- .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 3 + .../ClassDriver/RNDISEthernet/LUFA RNDIS.inf | 3 + .../VirtualSerial/LUFA VirtualSerial.inf | 3 + .../LUFA VirtualSerialMassStorage.inf | 3 + .../VirtualSerialMouse/LUFA VirtualSerialMouse.inf | 3 + .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 3 + Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf | 3 + .../LowLevel/VirtualSerial/LUFA VirtualSerial.inf | 3 + LUFA/CodeTemplates/WindowsINF/CDC-ACM.inf | 61 -------------------- LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf | 64 +++++++++++++++++++++ LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf | 59 +++++++++++++++++++ LUFA/CodeTemplates/WindowsINF/RNDIS.inf | 56 ------------------ Projects/Benito/Benito Programmer.inf | 63 --------------------- Projects/Benito/LUFA Benito Programmer.inf | 66 ++++++++++++++++++++++ Projects/LEDNotifier/LUFA LED Notifier.inf | 3 + Projects/USBtoSerial/LUFA USBtoSerial.inf | 3 + Projects/Webserver/LUFA Webserver RNDIS.inf | 3 + Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf | 3 + 19 files changed, 229 insertions(+), 181 deletions(-) delete mode 100644 LUFA/CodeTemplates/WindowsINF/CDC-ACM.inf create mode 100644 LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf create mode 100644 LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf delete mode 100644 LUFA/CodeTemplates/WindowsINF/RNDIS.inf delete mode 100644 Projects/Benito/Benito Programmer.inf create mode 100644 Projects/Benito/LUFA Benito Programmer.inf diff --git a/Bootloaders/CDC/LUFA CDC Bootloader.inf b/Bootloaders/CDC/LUFA CDC Bootloader.inf index bdb62a907..61624c731 100644 --- a/Bootloaders/CDC/LUFA CDC Bootloader.inf +++ b/Bootloaders/CDC/LUFA CDC Bootloader.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA CDC Bootloader.inf" + [Version] Signature="$Windows NT$" Class=Ports @@ -60,4 +63,4 @@ HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" ;------------------------------------------------------------------------------ [Strings] MFGNAME="http://www.lufa-lib.org" -DESCRIPTION="LUFA CDC Class Bootloader" \ No newline at end of file +DESCRIPTION="LUFA CDC Class Bootloader" diff --git a/Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf b/Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf index 2dbde363a..1a0e0248a 100644 --- a/Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf +++ b/Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA DualVirtualSerial.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf b/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf index b7cb825d7..f34e55f99 100644 --- a/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf +++ b/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf @@ -1,6 +1,9 @@ ; Windows LUFA RNDIS Setup File ; Copyright (c) 2000 Microsoft Corporation +[DefaultInstall] +CopyINF="LUFA RNDIS.inf" + [Version] Signature="$Windows NT$" Class=Net diff --git a/Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf b/Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf index 5e2e9f438..21d2d12b6 100644 --- a/Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf +++ b/Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA VirtualSerial.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Demos/Device/ClassDriver/VirtualSerialMassStorage/LUFA VirtualSerialMassStorage.inf b/Demos/Device/ClassDriver/VirtualSerialMassStorage/LUFA VirtualSerialMassStorage.inf index 919ae44cf..e5d8da5e3 100644 --- a/Demos/Device/ClassDriver/VirtualSerialMassStorage/LUFA VirtualSerialMassStorage.inf +++ b/Demos/Device/ClassDriver/VirtualSerialMassStorage/LUFA VirtualSerialMassStorage.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA VirtualSerialMassStorage.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf b/Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf index a6fdd736c..ac47e066b 100644 --- a/Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf +++ b/Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA VirtualSerialMouse.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf b/Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf index 2dbde363a..1a0e0248a 100644 --- a/Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf +++ b/Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA DualVirtualSerial.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf b/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf index b7cb825d7..f34e55f99 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf +++ b/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf @@ -1,6 +1,9 @@ ; Windows LUFA RNDIS Setup File ; Copyright (c) 2000 Microsoft Corporation +[DefaultInstall] +CopyINF="LUFA RNDIS.inf" + [Version] Signature="$Windows NT$" Class=Net diff --git a/Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf b/Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf index 5e2e9f438..21d2d12b6 100644 --- a/Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf +++ b/Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA VirtualSerial.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/LUFA/CodeTemplates/WindowsINF/CDC-ACM.inf b/LUFA/CodeTemplates/WindowsINF/CDC-ACM.inf deleted file mode 100644 index 34ae08ff5..000000000 --- a/LUFA/CodeTemplates/WindowsINF/CDC-ACM.inf +++ /dev/null @@ -1,61 +0,0 @@ -; Windows LUFA CDC ACM Setup File -; Copyright (c) 2000 Microsoft Corporation - -[Version] -Signature="$Windows NT$" -Class=Ports -ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} -Provider=%MFGNAME% -DriverVer=7/1/2012,10.0.0.0 - -[Manufacturer] -%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 - -[SourceDisksNames] - -[SourceDisksFiles] - -[DestinationDirs] -DefaultDestDir=12 - -[DriverInstall] -Include=mdmcpq.inf -CopyFiles=FakeModemCopyFileSection -AddReg=DriverInstall.AddReg - -[DriverInstall.Services] -Include=mdmcpq.inf -AddService=usbser, 0x00000002, LowerFilter_Service_Inst - -[DriverInstall.AddReg] -HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" - -;------------------------------------------------------------------------------ -; Vendor and Product ID Definitions -;------------------------------------------------------------------------------ -; When developing your USB device, the VID and PID used in the PC side -; application program and the firmware on the microcontroller must match. -; Modify the below line to use your VID and PID. Use the format as shown below. -; Note: One INF file can be used for multiple devices with different VID and PIDs. -; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. -;------------------------------------------------------------------------------ -[DeviceList] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 - -[DeviceList.NTx86] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 - -[DeviceList.NTamd64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 - -[DeviceList.NTia64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 - -;------------------------------------------------------------------------------ -; String Definitions -;------------------------------------------------------------------------------ -;Modify these strings to customize your device -;------------------------------------------------------------------------------ -[Strings] -MFGNAME="http://www.lufa-lib.org" -DESCRIPTION="LUFA CDC-ACM Virtual Serial Port" \ No newline at end of file diff --git a/LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf b/LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf new file mode 100644 index 000000000..212b5bbcb --- /dev/null +++ b/LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf @@ -0,0 +1,64 @@ +; Windows LUFA CDC ACM Setup File +; Copyright (c) 2000 Microsoft Corporation + +[DefaultInstall] +CopyINF="LUFA CDC-ACM.inf" + +[Version] +Signature="$Windows NT$" +Class=Ports +ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} +Provider=%MFGNAME% +DriverVer=7/1/2012,10.0.0.0 + +[Manufacturer] +%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 + +[SourceDisksNames] + +[SourceDisksFiles] + +[DestinationDirs] +DefaultDestDir=12 + +[DriverInstall] +Include=mdmcpq.inf +CopyFiles=FakeModemCopyFileSection +AddReg=DriverInstall.AddReg + +[DriverInstall.Services] +Include=mdmcpq.inf +AddService=usbser, 0x00000002, LowerFilter_Service_Inst + +[DriverInstall.AddReg] +HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" + +;------------------------------------------------------------------------------ +; Vendor and Product ID Definitions +;------------------------------------------------------------------------------ +; When developing your USB device, the VID and PID used in the PC side +; application program and the firmware on the microcontroller must match. +; Modify the below line to use your VID and PID. Use the format as shown below. +; Note: One INF file can be used for multiple devices with different VID and PIDs. +; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. +;------------------------------------------------------------------------------ +[DeviceList] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 + +[DeviceList.NTx86] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 + +[DeviceList.NTamd64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 + +[DeviceList.NTia64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044 + +;------------------------------------------------------------------------------ +; String Definitions +;------------------------------------------------------------------------------ +;Modify these strings to customize your device +;------------------------------------------------------------------------------ +[Strings] +MFGNAME="http://www.lufa-lib.org" +DESCRIPTION="LUFA CDC-ACM Virtual Serial Port" diff --git a/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf b/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf new file mode 100644 index 000000000..73ca50e68 --- /dev/null +++ b/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf @@ -0,0 +1,59 @@ +; Windows LUFA RNDIS Setup File +; Copyright (c) 2000 Microsoft Corporation + +[DefaultInstall] +CopyINF="LUFA RNDIS.inf" + +[Version] +Signature="$Windows NT$" +Class=Net +ClassGuid={4d36e972-e325-11ce-bfc1-08002be10318} +Provider=%MFGNAME% +DriverVer=7/1/2012,10.0.0.0 + +[Manufacturer] +%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 + +[ControlFlags] +ExcludeFromSelect=* + +[DriverInstall] +Characteristics=0x84 ; NCF_PHYSICAL + NCF_HAS_UI +BusType=15 +include=netrndis.inf +needs=Usb_Rndis.ndi +AddReg=Rndis_AddReg_Vista + +[DriverInstall.Services] +include=netrndis.inf +needs=Usb_Rndis.ndi.Services + +;------------------------------------------------------------------------------ +; Vendor and Product ID Definitions +;------------------------------------------------------------------------------ +; When developing your USB device, the VID and PID used in the PC side +; application program and the firmware on the microcontroller must match. +; Modify the below line to use your VID and PID. Use the format as shown below. +; Note: One INF file can be used for multiple devices with different VID and PIDs. +; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. +;------------------------------------------------------------------------------ +[DeviceList] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C + +[DeviceList.NTx86] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C + +[DeviceList.NTamd64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C + +[DeviceList.NTia64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C + +;------------------------------------------------------------------------------ +; String Definitions +;------------------------------------------------------------------------------ +;Modify these strings to customize your device +;------------------------------------------------------------------------------ +[Strings] +MFGNAME="http://www.lufa-lib.org" +DESCRIPTION="LUFA RNDIS USB Ethernet Adapter" diff --git a/LUFA/CodeTemplates/WindowsINF/RNDIS.inf b/LUFA/CodeTemplates/WindowsINF/RNDIS.inf deleted file mode 100644 index 5b1ed46a5..000000000 --- a/LUFA/CodeTemplates/WindowsINF/RNDIS.inf +++ /dev/null @@ -1,56 +0,0 @@ -; Windows LUFA RNDIS Setup File -; Copyright (c) 2000 Microsoft Corporation - -[Version] -Signature="$Windows NT$" -Class=Net -ClassGuid={4d36e972-e325-11ce-bfc1-08002be10318} -Provider=%MFGNAME% -DriverVer=7/1/2012,10.0.0.0 - -[Manufacturer] -%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 - -[ControlFlags] -ExcludeFromSelect=* - -[DriverInstall] -Characteristics=0x84 ; NCF_PHYSICAL + NCF_HAS_UI -BusType=15 -include=netrndis.inf -needs=Usb_Rndis.ndi -AddReg=Rndis_AddReg_Vista - -[DriverInstall.Services] -include=netrndis.inf -needs=Usb_Rndis.ndi.Services - -;------------------------------------------------------------------------------ -; Vendor and Product ID Definitions -;------------------------------------------------------------------------------ -; When developing your USB device, the VID and PID used in the PC side -; application program and the firmware on the microcontroller must match. -; Modify the below line to use your VID and PID. Use the format as shown below. -; Note: One INF file can be used for multiple devices with different VID and PIDs. -; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. -;------------------------------------------------------------------------------ -[DeviceList] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C - -[DeviceList.NTx86] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C - -[DeviceList.NTamd64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C - -[DeviceList.NTia64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204C - -;------------------------------------------------------------------------------ -; String Definitions -;------------------------------------------------------------------------------ -;Modify these strings to customize your device -;------------------------------------------------------------------------------ -[Strings] -MFGNAME="http://www.lufa-lib.org" -DESCRIPTION="LUFA RNDIS USB Ethernet Adapter" diff --git a/Projects/Benito/Benito Programmer.inf b/Projects/Benito/Benito Programmer.inf deleted file mode 100644 index b18de077d..000000000 --- a/Projects/Benito/Benito Programmer.inf +++ /dev/null @@ -1,63 +0,0 @@ -;************************************************************ -; Windows USB CDC ACM Setup File -; Copyright (c) 2000 Microsoft Corporation -;************************************************************ - -[Version] -Signature="$Windows NT$" -Class=Ports -ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} -Provider=%MFGNAME% -DriverVer=7/1/2012,10.0.0.0 - -[Manufacturer] -%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 - -[SourceDisksNames] - -[SourceDisksFiles] - -[DestinationDirs] -DefaultDestDir=12 - -[DriverInstall] -Include=mdmcpq.inf -CopyFiles=FakeModemCopyFileSection -AddReg=DriverInstall.AddReg - -[DriverInstall.Services] -Include=mdmcpq.inf -AddService=usbser, 0x00000002, LowerFilter_Service_Inst - -[DriverInstall.AddReg] -HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" - -;------------------------------------------------------------------------------ -; Vendor and Product ID Definitions -;------------------------------------------------------------------------------ -; When developing your USB device, the VID and PID used in the PC side -; application program and the firmware on the microcontroller must match. -; Modify the below line to use your VID and PID. Use the format as shown below. -; Note: One INF file can be used for multiple devices with different VID and PIDs. -; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. -;------------------------------------------------------------------------------ -[DeviceList] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 - -[DeviceList.NTx86] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 - -[DeviceList.NTamd64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 - -[DeviceList.NTia64] -%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 - -;------------------------------------------------------------------------------ -; String Definitions -;------------------------------------------------------------------------------ -;Modify these strings to customize your device -;------------------------------------------------------------------------------ -[Strings] -MFGNAME="http://www.lufa-lib.org" -DESCRIPTION="LUFA Benito Programmer" \ No newline at end of file diff --git a/Projects/Benito/LUFA Benito Programmer.inf b/Projects/Benito/LUFA Benito Programmer.inf new file mode 100644 index 000000000..75e93a8a9 --- /dev/null +++ b/Projects/Benito/LUFA Benito Programmer.inf @@ -0,0 +1,66 @@ +;************************************************************ +; Windows USB CDC ACM Setup File +; Copyright (c) 2000 Microsoft Corporation +;************************************************************ + +[DefaultInstall] +CopyINF="LUFA Benito Programmer.inf" + +[Version] +Signature="$Windows NT$" +Class=Ports +ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} +Provider=%MFGNAME% +DriverVer=7/1/2012,10.0.0.0 + +[Manufacturer] +%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 + +[SourceDisksNames] + +[SourceDisksFiles] + +[DestinationDirs] +DefaultDestDir=12 + +[DriverInstall] +Include=mdmcpq.inf +CopyFiles=FakeModemCopyFileSection +AddReg=DriverInstall.AddReg + +[DriverInstall.Services] +Include=mdmcpq.inf +AddService=usbser, 0x00000002, LowerFilter_Service_Inst + +[DriverInstall.AddReg] +HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" + +;------------------------------------------------------------------------------ +; Vendor and Product ID Definitions +;------------------------------------------------------------------------------ +; When developing your USB device, the VID and PID used in the PC side +; application program and the firmware on the microcontroller must match. +; Modify the below line to use your VID and PID. Use the format as shown below. +; Note: One INF file can be used for multiple devices with different VID and PIDs. +; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. +;------------------------------------------------------------------------------ +[DeviceList] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 + +[DeviceList.NTx86] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 + +[DeviceList.NTamd64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 + +[DeviceList.NTia64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2060 + +;------------------------------------------------------------------------------ +; String Definitions +;------------------------------------------------------------------------------ +;Modify these strings to customize your device +;------------------------------------------------------------------------------ +[Strings] +MFGNAME="http://www.lufa-lib.org" +DESCRIPTION="LUFA Benito Programmer" \ No newline at end of file diff --git a/Projects/LEDNotifier/LUFA LED Notifier.inf b/Projects/LEDNotifier/LUFA LED Notifier.inf index 5e2e9f438..dc3f0e74a 100644 --- a/Projects/LEDNotifier/LUFA LED Notifier.inf +++ b/Projects/LEDNotifier/LUFA LED Notifier.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA LED Notifier.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Projects/USBtoSerial/LUFA USBtoSerial.inf b/Projects/USBtoSerial/LUFA USBtoSerial.inf index 86a39e0df..b00fab6a4 100644 --- a/Projects/USBtoSerial/LUFA USBtoSerial.inf +++ b/Projects/USBtoSerial/LUFA USBtoSerial.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA USBtoSerial.inf" + [Version] Signature="$Windows NT$" Class=Ports diff --git a/Projects/Webserver/LUFA Webserver RNDIS.inf b/Projects/Webserver/LUFA Webserver RNDIS.inf index 2cd035bc5..c77de8f6b 100644 --- a/Projects/Webserver/LUFA Webserver RNDIS.inf +++ b/Projects/Webserver/LUFA Webserver RNDIS.inf @@ -1,6 +1,9 @@ ; Windows LUFA RNDIS Setup File ; Copyright (c) 2000 Microsoft Corporation +[DefaultInstall] +CopyINF="LUFA Webserver RNDIS.inf" + [Version] Signature="$Windows NT$" Class=Net diff --git a/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf b/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf index 72387e40c..45840e8bf 100644 --- a/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf +++ b/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf @@ -3,6 +3,9 @@ ; Copyright (c) 2000 Microsoft Corporation ;************************************************************ +[DefaultInstall] +CopyINF="LUFA XPLAIN Bridge.inf" + [Version] Signature="$Windows NT$" Class=Ports -- cgit v1.2.3