# File lib/ImageFormat.rb, line 27
def self.possible_file_systems
    results=[]
    FileSystem.all_file_systems.each do |candidate| 
      results<<candidate if (host_system==candidate.host_system) || (candidate.host_system==HostSystem)
    end
    results
end