forked from vlachoudis/brexx
-
Notifications
You must be signed in to change notification settings - Fork 12
Installation
Mike Großmann edited this page Feb 8, 2019
·
1 revision
- The installation arcihive is provide as ZIP archive. This archive consists of the following files:
- BRexx370 Installation.pdf
- BRexx370.xmit
- The actual installation archive is provided in XMIT format. This means that it has to be transferred as FB80 dataset to the target system.
- On the target system, the archive must be unpacked using the Receive program. Here is an example job:
//BRXXREC JOB 'XMIT RECEIVE',CLASS=A,MSGCLASS=H
//* ------------------------------------------------------------
//* RECEIVE XMIT FILE AND CREATE DSN OR PDS
//* OUTPUT DSN WILL BE DELETED TO AVOID NOT CATLG2
//* ------------------------------------------------------------
//XMITREC PROC IDSN=,ODSN=
//* 1. DELETE OLD VERSION OF TARGET FILE
//STEP10 EXEC PGM=IKJEFT01,PARM='DELETE &ODSN'
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD DUMMY
//* 2. RECEIVE XMIT FILE AND CREATE TARGET FILE
//STEP20 EXEC PGM=RECV370,REGION=4096K
//RECVLOG DD SYSOUT=*
//XMITIN DD DSN=&IDSN,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=&&SYSUT1,UNIT=SYSDA,
// SPACE=(TRK,(250,250)),DISP=(NEW,DELETE,DELETE)
//SYSUT2 DD DSN=&ODSN,UNIT=SYSDA,
// SPACE=(TRK,(250,250,150),RLSE),DISP=(NEW,CATLG,DELETE)
//SYSIN DD DUMMY
// PEND
//RECEIVE EXEC XMITREC,
// IDSN='HERC01.BREXX.XMITBIN',
// ODSN='HERC01.BREXX.INSTALL'
- tbc
- tbc