1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<match key="@storage.originating_device:info.subsystem" string="usb">
<!-- SONICblue -->
<match key="@storage.originating_device:usb.vendor_id" int="0x045a">
<!-- Rio Karma -->
<match key="@storage.originating_device:usb.product_id" int="0x5210">
<match key="info.capabilities" contains_not="portable_audio_player">
<append key="info.capabilities" type="strlist">portable_audio_player</append>
</match>
<merge key="info.category" type="string">portable_audio_player</merge>
<merge key="portable_audio_player.access_method" type="string">user</merge>
<match key="portable_audio_player.access_method.protocols" contains_not="karma">
<append key="portable_audio_player.access_method.protocols" type="strlist">karma</append>
</match>
<append key="portable_audio_player.access_method.drivers" type="strlist">libkarma</append>
<match key="portable_audio_player.output_formats" contains_not="audio/mpeg">
<append key="portable_audio_player.output_formats" type="strlist">audio/mpeg</append>
</match>
<match key="portable_audio_player.output_formats" contains_not="audio/x-ms-wma">
<append key="portable_audio_player.output_formats" type="strlist">audio/x-ms-wma</append>
</match>
<merge key="portable_audio_player.libkarma.protocol" type="string">karma</merge>
<merge key="portable_audio_player.libkarma.name" type="string">SONICblue Rio Karma</merge>
</match>
</match>
</match>
</device>
</deviceinfo>
|