; ; *-*-* BR38.CSD *-*-* ; ; This Submit file generates the iRMX Bootstrap Loader Remote ; Third Stage. ; ; Invocation: submit :f1:br38(configuration file, ; location, ; output file) ; Where: ; configuration file: The name of the Bootstrap Loader configuration ; file with no extension. If the configuration file is named ; BR38.A86, specify BR38. ; location: the memory location of the Third Stage. Use the default ; address 06000H if you have no special requirements. ; The default address is designed to function with standard ; iRMX II systems. ; output file: The name of a file where the remote third stage will ; be placed after it is converted to the remote boot format. ; ; The default directory (:$:) must contain the iRMX Bootstrap Loader ; configuration files. To obtain these, create a directory in ; which to generate the Bootstrap Loader, attach it as the default ; directory and invoke the following Submit file: ; ; submit /bsl/setup ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* ; attachfile /bsl as :f1: ; asm86 %0.a86 ; link86 & %0.obj, & :f1:br38.lib & to %0.lnk print(%0.mp1) notype nolines nosymbols initcode ; loc86 %0.lnk to %0.loc & addresses(segments(code(0%1))) noinitcode & order(segments(CODE,DATA,DATA_ENTP)) & segsize(stack(200H)) start(106H,0) & objectcontrols (purge) ; ; Convert the located module to remote boot format. ; The xlate program is supplied with iRMX-NET Release 3.1 or newer. ; delete %2 xlate %0.loc over %2 r a n d ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* ; ; The Remote Third Stage, located at address %1, is in the file %2 ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*