Hi
I have below protocols bound to the miniport.
Is there any way to control their binding and load order.
The miniport INF is below
HKR, Ndi\Interfaces, UpperRange, 0, “ndis5,protA,protB”
HKR, Ndi\Interfaces, LowerRange, 0, “ethernet”
The LoadOrder of these protocols is NDIS and StartType is SERVICE_SYSTEM_START (0x00000001)
I want below semantics
TCP/IP to laod first, then ProtA and then ProtB.
Ideally each subsequent protocol should load after the previous one exit from its DriverEntry
Is there anyway to achieve this through INFs itself rather than programatically.
I looked at INF AddSerivce Dependencies key, not sure if it really applies to other than SERVICE_AUTO_START/SERVICE_DEMAND_START typed drivers
–thx