-- PeachColorVersatec.config, Mik Lamming,  6-Dec-83  8:38:38
-- Michael Plass,   2-Nov-84 10:09:40

-- 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]

DIRECTORY
    HeapImpl: FROM "UnpackedHeapImpl",
    PilotKernel: FROM "UtilityPilotKernel",
    STPs: FROM "UnpackedSTPs",
    UtilityPilotClientImpl: FROM "Alive";
    
    
PACK
  ColorVersatecDriverImpl,
  ColorVersatecInterpOutputImpl,
  ColorVersatecUtilsImpl,
  DESAux,
  DESDicentra,
  DicentraDiskDriverImpl,
  DummyForwarder,
  FormatImpl,
  FSPRList,
  HeapImpl,
  KillWatchdogImpl,
  Locate,
  NameInfo,
  --OscarAdm,--
  OthelloOpsTime,
  PDChatServerImpl,
  PDDeviceDriverImpl,
  PDInterpBitmapImpl,
  PDInterpMainImpl,
  PDInterpPageImpl,
  PDInterpReaderImpl,
  PDInterpSysCallsDevelImpl,
  PDQueueImpl,
  PDRemoteStreamImpl,
  PDStartTimeImpl,
  PDTextBitmapImpl,
  PDTTYImpl,
  PDTTYLearSiegler,
  PDUserImpl,
  Protocol,
  SendMail,
  STPsA,
  STPsB,
  STPsC,
  STPsD,
  StringsImplA,
  StringsImplB,
  TimeImpl,
  TTYImpl,
  TTYPortChannel,
  --TTYLearSiegler,--
  Unformatter,
  UtilityPilotClientImpl,
  OthelloDefsDummyImpl;
    
    
PeachColorVersatec: CONFIGURATION LINKS: CODE
    IMPORTS
	 RuntimePrograms, RuntimeInternal --no loader-- =
    BEGIN
    
    StartTrapper: CONFIGURATION
        IMPORTS
          Format, Heap, NameInfoDefs, OthelloOps, Process, ProcessorFace, PupDefs, PupStream, Runtime, Space, SpecialRuntime, Stream, String, System, Time, TTYPortFace, Watchdog
        EXPORTS PilotClient
        CONTROL UtilityPilotClientImpl, STPs, DicentraDiskDriverImpl, ColorVersatecUtilsImpl, PDDeviceDriverImpl, ColorVersatecDriverImpl, ColorVersatecInterpOutputImpl, TTYPortChannel, PeachCommon, KillWatchdogImpl, PDInterpMainImpl, PDChatServerImpl =
        BEGIN
        TTYPortChannel;
        TTYImpl;
        DicentraDiskDriverImpl;
        ColorVersatecUtilsImpl;
        PDDeviceDriverImpl;
        ColorVersatecDriverImpl;
        UtilityPilotClientImpl;  -- Alive
        PeachCommon;
        PDInterpMainImpl;
	PDChatServerImpl;
	STPs;
        ColorVersatecInterpOutputImpl;
	OthelloDefsDummyImpl;
	KillWatchdogImpl;
        END;
        
    PilotKernel;
    BasicHeadsDicentra;
    DESDicentra;
    DESAux;
    Communication;
    HeapImpl;
    PupForOthello;
    
    StartTrapper;
    
    Protocol; FSPRList; NameInfo; Locate; SendMail;  -- GrapevineUser
    FormatImpl;
    StringsImplA;
    StringsImplB;
    TimeImpl;
    Unformatter;
    OthelloOpsTime;
    
    END.