home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pdp11 / k11pos.com < prev    next >
Text File  |  2020-01-01  |  2KB  |  108 lines

  1.  
  2. $
  3. $ ! DCL/Batch command file for building K11POS.TSK on
  4. $ ! RSTS/E 9.0
  5. $ ! 17-Jan-85  13:11:54
  6. $
  7. $ set noon
  8. $ syslib = f$search("syslib.olb")
  9. $ if syslib .nes. "" then goto fiexits
  10. $ cop/rep/nolog lb:[1,200]syslib.p30 sy:syslib.olb
  11. $ cop/rep/nolog lb:[1,200]rmsres.stb sy:
  12. $ cop/rep/nolog lb:[1,200]rmsres.tsk sy:
  13. $ cop/rep/nolog lb:[1,200]vmlib.olb sy:
  14. $ cop/rep/nolog lb:[1,200]rmsrlx.odl sy:
  15. $ cop/rep/nolog lb:[1,200]rmsm30.olb sy:rmslib.olb
  16. $ ass sy: ob
  17. $ ass sy: lb
  18. $ ass dv0: ov
  19. $ xtkb
  20. k11pos/mm/cp/pr:0,k11pos/-wi=k11pos/mp
  21. reslib = lb:rmsres/ro
  22. ;clstr=rmsres,dapres:ro
  23. units=10
  24. asg=sy:6:7:8:9:10
  25. gbldef=lncnt$:3
  26. gbldef=maxsiz:300
  27. gbldef=t.v131:30
  28. gbldef=t.v132:31
  29. gbldef=t.v2xx:36
  30. gbldef=t.bmp1:35
  31. gbldef=tiunit:0
  32. gbldef=tc.pth:146
  33. gbldef=dapsup:0
  34. gbldef=$hbufs:2
  35. ;
  36. ; To change the maximum text record buffer size (only do this on I/D)
  37. ;
  38. ; GBLDEF=MAXSIZ:nnnn
  39. ;
  40. ;
  41. ; To change the dialer timeout value:
  42. ; GBLPAT=K11DIA:..DIAT:45
  43. ; If you want to avoid the M+ v3/MicroRsx v3 Kermit logical name translation
  44. ; for KERMIT$LINEn , then include the following:
  45. ; GBLPAT=K11PAK:DO$TRA:0
  46. ;
  47. ; else:
  48. ; GBLPAT=K11PAK:DO$TRA:1    ; the default
  49. ;
  50. ; If you want to reduce the message printing (as in SET QUIET)
  51. ; then:
  52. ; GBLPAT=K11PAK:DO$MSG:0
  53. ; else
  54. ; GBLPAT=K11PAK:DO$MSG:1    ; the default
  55. ;
  56. ; If you want logfiles to be appended to instead of created each time
  57. ; then:
  58. ; GBLPAT=K11PAK:DO$APP:1
  59. ; else:
  60. ; GBLPAT=K11PAK:DO$APP:0    ; the default
  61. ;
  62. ; If, for whatever reason, you don't want version number printed at
  63. ; program startup,
  64. ; then:
  65. ; GBLPAT=K11PAK:DO$VER:0
  66. ;
  67. ;
  68. ; If you want kermit to NOT exit at end of file from the invocation
  69. ; as in: ker @dial
  70. ; (which is can set in the com file via SET EOF NOEXIT)
  71. ; then:
  72. ; GBLPAT=K11PAK:DO$EXI:0
  73. ;
  74. ; If you want to force SET RSX CON ALT,
  75. ; then:
  76. ; GBLPAT=K11PAK:DO$ALT:1
  77. ;
  78. ;
  79. ; If you want to force the use of PRO/COMM (DTE) for P/OS instead
  80. ; of the internal connect code, then:
  81. ;
  82. ; GBLPAT=K11PAK:DO$DTE:1
  83. ;
  84. ; to use the default of the internal code (in case K11M41.MAC has been
  85. ; altered)
  86. ;
  87. ; GBLPAT=K11PAK:DO$DTE:0
  88. ;
  89. ;
  90. ; since we use our own stack area we really don't need much
  91. ; at task build time
  92.  
  93. stack=64
  94.  
  95. //
  96. $ del syslib.olb
  97. $ del vmlib.olb
  98. $ del rmsres.stb
  99. $ del rmsres.tsk
  100. $ del rmsrlx.odl
  101. $ del rmslib.olb
  102. $ tell brian k11pos tkb done
  103. $ exit
  104. $fiexits:
  105. $ write 0 "Syslib.olb exists already, job aborted"
  106. $ exit
  107.