For my KEXT I set the property “Protocol Characteristics” in Info.plist file
<key>Protocol Characteristics</key>
<dict>
<key>Physical Interconnect</key>
<string>SAS</string>
<key>Physical Interconnect Location</key>
<string>External</string>
</dict>
For DEXT this method does not work - still my SCSI device has “Internal/External” property instead of “External” Protocol Characteristics
<dict>
<key>Physical Interconnect</key>
<string>SCSI Parallel Interface</string>
<key>Physical Interconnect Location</key>
<string>Internal/External</string>
</dict>
I also tried to set these properties by the second parameter for UserCreateTargetForId(). It also did not work.
Does anybody know how to set the property?