" Space separated list. Available options:\n" <<
" apple\t\tReturns Apple-specific mode pages\n" <<
" omti\t\tOMTI host non-standard link control\n" <<
+ " xebec\t\tXEBEC ignore step options in control byte\n" <<
" ********************************************************* -->\n" <<
" <quirks>";
if (config.quirks == S2S_CFG_QUIRKS_APPLE)
{
s << "omti";
}
+ else if (config.quirks == S2S_CFG_QUIRKS_XEBEC)
+ {
+ s << "xebec";
+ }
s <<
"</quirks>\n" <<
{
result.quirks |= S2S_CFG_QUIRKS_OMTI;
}
+ else if (quirk == "xebec")
+ {
+ result.quirks |= S2S_CFG_QUIRKS_XEBEC;
+ }
}
}
else if (child->GetName() == "deviceType")