-- DiskDebug.config, HGM, JAG   6-Apr-84 10:17:55

DIRECTORY
  HeapImpl: FROM "UnpackedHeapImpl",
  PilotKernel: FROM "UtilityPilotKernel",
  UtilityPilotClientImpl: FROM "Alive";

  -- NOTE: UtilityPilot.bootmesa uses UtilityPilotClientImpl to make code
  --   resident.  Either clients must PACK all their modules to 
  --   UtilityPilotClientImpl (and add no packaged code)
  --   or they must change the bootmesa file or they must add
  --   parameter files.
  -- There is a seperate bootmesa file for UtilityCommunication;
  -- The prototype for the Makeboot command is:
  --   Makeboot Client[parm: UtilityPilot, parm: UtilityCommunication]

PACK
  UtilityPilotClientImpl, HeapImpl,
  ColorVersatecUtilsImpl, DiskDebugImpl,
  ColorVersatecDriverImpl, DicentraDiskDriverImpl,
  MultibusServer, MultibusRpcServerImpl, Multibuser,
  DESDicentra, DESAux,
  DummyForwarder,  -- Hook for PupForOthello
  RPCSignals,  -- Hook for RPCRuntime
  Protocol, FSPRList, NameInfo, Locate, SendMail,
  FormatImpl, StringsImplA, StringsImplB, TimeImpl, Unformatter,
  TTYImpl, TTYPortChannel, TTYLearSiegler, OscarAdm;


DiskDebug: CONFIGURATION LINKS: CODE
  IMPORTS
    RuntimePrograms, RuntimeInternal --no loader-- =
  BEGIN
  
  StartTrapper: CONFIGURATION
    IMPORTS
      Heap, Process, ProcessorFace, Runtime, System,
      TTYPortFace, SpecialRuntime, Stream, Format, String,
      MultibusRpcControl,
      Watchdog
    EXPORTS PilotClient
    CONTROL
      UtilityPilotClientImpl, MultibusServer,
      DicentraDiskDriverImpl, ColorVersatecDriverImpl, 
      ColorVersatecUtilsImpl, DiskDebugImpl,
      TTYPortChannel, TTYLearSiegler, OscarAdm =
    BEGIN
      
    -- IMPORTS
    --  Format, Heap, Process, Runtime, Stream, String, SpecialRuntime, TTYPortFace
    -- EXPORTS TTY
    -- CONTROL TTYPortChannel, TTYLearSiegler =
  
    OscarAdm;
    TTYPortChannel;
    TTYLearSiegler;
    TTYImpl;
    ColorVersatecDriverImpl;
    ColorVersatecUtilsImpl;
    DicentraDiskDriverImpl;
    DiskDebugImpl;
    MultibusServer;
    UtilityPilotClientImpl;  -- Alive
    END;

  PilotKernel;
  BasicHeadsDicentra;
  DESDicentra;
  DESAux;
  Communication;
  HeapImpl;
  PupForOthello;

  StartTrapper;
  MultibusRpcServerImpl;
  Multibuser;
  RPCRuntime;
    
  Protocol; FSPRList; NameInfo; Locate; SendMail;  -- GrapevineUser
  FormatImpl;
  StringsImplA;
  StringsImplB;
  TimeImpl;
  Unformatter;
  
  END.....