-- PeachColorVersatec.config, Mik Lamming,  6-Dec-83  8:38:38
-- Michael Plass,   2-Nov-84 10:09:40
-- Hal Murray,  23-Dec-85 12:35:07
-- Tim Diebert,  4-Sep-86 13:05:07

-- 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, -- PupForOthello
  EthernetOneDriver,
  EthernetOneStarter,
  PupEchoServerNoDisk,
  FormatImpl,
  FSPRList,
  HeapImpl,
  KillWatchdogImpl,
  Locate,
  NameInfo,
  --OscarAdm,--
  OthelloOpsTime,
  PDChatServerImpl,
  PDDeviceDriverImpl,
  PDInterpMainImpl,
  PDQueueImpl, -- PeachCommon--
  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
          Buffer, CommHeap, CommunicationInternal, CommUtil, Driver, EthernetOneFace, Format, Heap, NameInfoDefs, OthelloOps, Process, ProcessorFace, Protocol1, PupDefs, PupPktOps, PupStream, Runtime, Space, SpecialRuntime, SpecialSystem, Stats, Stream, String, System, SystemExtras, Time, TTYPortFace, Watchdog
        EXPORTS PilotClient
        CONTROL
     EthernetOneDriver, EthernetOneStarter, PupEchoServerNoDisk, UtilityPilotClientImpl, STPs, DicentraDiskDriverImpl, ColorVersatecUtilsImpl, PDDeviceDriverImpl, ColorVersatecDriverImpl, ColorVersatecInterpOutputImpl, TTYPortChannel, PeachCommon, KillWatchdogImpl, PDInterpMainImpl, PDChatServerImpl =
        BEGIN
        EthernetOneDriver;
        EthernetOneStarter;
        PupEchoServerNoDisk;
        TTYPortChannel;
        TTYImpl;
        DicentraDiskDriverImpl;
        ColorVersatecUtilsImpl;
        PDDeviceDriverImpl;
        ColorVersatecDriverImpl;
        UtilityPilotClientImpl;  -- Alive
        PeachCommon;
        PDInterpMainImpl;
   PDChatServerImpl;
   STPs;
        ColorVersatecInterpOutputImpl;
   OthelloDefsDummyImpl;
   KillWatchdogImpl;
        END;
        
    PilotKernel;
    BasicHeadsDicentra;
    DESDicentra;
    DESAux;
    Base;
    XNS;
    HeapImpl;
    PupForOthello;
    
    StartTrapper;
    
    Protocol; FSPRList; NameInfo; Locate; SendMail;  -- GrapevineUser
    FormatImpl;
    StringsImplA;
    StringsImplB;
    TimeImpl;
    Unformatter;
    OthelloOpsTime;
    
    END.