home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / hal / examples / no-cd-media-check.fdi
Encoding:
Extensible Markup Language  |  2009-07-05  |  1.1 KB  |  42 lines

  1. <?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
  2.  
  3. <!-- 
  4.   An example fdi config that disables media checks on CD devices, to work
  5.   around certain hardware bugs described in Debian bug #370186
  6. -->
  7. <deviceinfo version="0.2">
  8.  
  9. <!-- 
  10.   The following disables the use of hald-addon-storage for all CD/DVD devices
  11.   on the system.
  12. -->
  13.   <device>
  14.     <match key="storage.cdrom.cdr" bool="true">
  15.       <merge key="info.addons" type="strlist"></merge>
  16.     </match>
  17.   </device>
  18.  
  19. <!-- 
  20.   The following disables the use of hald-addon-storage for specific CD
  21.   devices, by name.  You can find the name of your particular CD device
  22.   using the 'lshal' command.
  23. -->
  24.   <device>
  25.     <match key="info.product" string="HL-DT-STDVD-ROM GDR8162B">
  26.       <merge key="info.addons" type="strlist"></merge>
  27.     </match>
  28.   </device>
  29.   <device>
  30.     <match key="info.product" string="HL-DT-ST DVDRAM GSA-4080N">
  31.       <merge key="info.addons" type="strlist"></merge>
  32.     </match>
  33.   </device>
  34.   <device>
  35.     <match key="info.product" string="HL-DT-ST DVD-RW GCA-4080N">
  36.       <merge key="info.addons" type="strlist"></merge>
  37.     </match>
  38.   </device>
  39.  
  40. </deviceinfo>
  41.  
  42.