# File lib/file_systems/RawDisk.rb, line 16
  def self.compatability_score(file_system_image)
    #if the filesystem on a DSK is RAW, don't worry about sector interleaves

    if file_system_image.image_format.instance_of?(A2Dsk)
      return 0
    else
      return 0.1
    end
  end