Comment 49 for bug 283316

Revision history for this message
Livid (g-livid) wrote : Re: opening /dev/scdN causes tray to be closed

I should note, the fix is somewhat strange. It would be better to change
ENV{DEVTYPE}=="disk", KERNEL!="sd*|sr*", ATTR{removable}=="1", GOTO="persistent_storage_end"
to
ENV{DEVTYPE}=="disk", ATTR{removable}=="1", GOTO="persistent_storage_end"

This would be the same as adding
ENV{DEVTYPE}=="disk", KERNEL=="sd*|sr*", ATTR{removable}=="1", GOTO="persistent_storage_end"
but four comparison operations cheaper for your processor, meaning it is FASTER, MORE EFFICIENT, and LESS POWER CONSUMING.

Thanks for reading.