-- FileSystem.config
-- Configuration file for the Cedar Interim File System
-- We assume that Cedar/Tajo exports STP
-- D. Gifford  July 26, 1982 3:11 pm
-- Maurice Herlihy August 29, 1982
-- M. Schroeder September 23, 1982 3:28 pm
-- R. Levin November 2, 1982 4:36 pm
  
  
FileSystem: CONFIGURATION LINKS:CODE

IMPORTS
   CedarInitOps, CedarSnapshot, Convert, ConvertUnsafe, Date, Directory,
   File, FileStream, Heap, KernelFile, List, Process, PupDefs,
   Rope, RTFiles, Runtime, Space, Storage, STP, Stream, System, Transaction,
   UserCredentials, UserCredentialsUnsafe, Volume
   
EXPORTS

-- we export our things
   CIFS, CIFSFeedback, CIFSPrivate, DirMan, FileLookup, FT, FtpMan, LSD,
   
-- and the BTree software
   BTreeDefs, BTreeSupportExtraDefs
   
CONTROL

-- start Maurice first
   Salvager,
   
--  now the rest of the system
   BTrees, LSDImpl, FtpManImpl, FTImpl, DirManImpl, CIFSImpl = {
  
-- Directory Level of CIFS
      CIFSImpl;
      DirManImpl;
-- File Transfer Level of CIFS
      FTImpl;
      FtpManImpl;
      LSDImpl; 
-- BTree package
      BTrees;
-- LSD Salvager
      Salvager;
-- File lookup protocol implementation
      FileLookupImpl;

 }..