I have multiple WinUSB devices, that all need to install the generic WinUSB driver. Each device also needs significantly different add ons. What I'd like to do is something like the following
[Devices.NTamd64]
%deva% = A_INSTALL, USB\VID_1067&PID_0001
%devb% = B_INSTALL, USB\VID_1067&PID_0002
[USB_Install]
Include=winusb.inf
Needs=WINUSB.NT
[A_INSTALL]
Needs=USB_Install
; customizations would be here, and in additional A_INSTALL. sections
[B_INSTALL]
Needs=USB_Install
; customizations would be here, and in additional B_INSTALL. sections
Obviously Needs= won't work, as Needs is only applicable to system supplied .inf files. Any suggestions on how to create this .inf file, without duplicating the [USB_Install] sections for each specific model?