-- Copyright (C) 1983 by Xerox Corporation. All rights reserved. -- FlukeServer.config, HGM, 12-Dec-83 19:21:29 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, MultibusServer, MultibusRpcServerImpl, Multibuser, DESDicentra, DESAux, DummyForwarder, -- Hook for PupForOthello RPCSignals, -- Hook for RPCRuntime Protocol, FSPRList, NameInfo, Locate, SendMail, FormatImpl, StringsImplA, StringsImplB, TimeImpl, Unformatter; FlukeServer: CONFIGURATION LINKS: CODE IMPORTS RuntimePrograms, RuntimeInternal --no loader-- = BEGIN StartTrapper: CONFIGURATION IMPORTS Process, Runtime, System, MultibusRpcControl, Watchdog EXPORTS PilotClient CONTROL MultibusServer, UtilityPilotClientImpl= BEGIN 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.....