You should be able to use z/OS's HCD to create the IOCDS for z/VM. I
believe you will need to send the files to VM and use the IOCP routine
to write it out to the SE
I use this code to compile and write out the IOCDS source file
/*******************************************************************/
/* 'IOCP RAPTORA0 ( ICP WRTA0 DYN DESC1 RAPTORA0 DESC2' TODAY */
/*******************************************************************/
TRUE = (1=1)
FALSE = \TRUE
WRITE_IT = TRUE
TODAY = DATE('S')
IO_NAME = 'RAPTOR'
IO_TYPE = 'A2'
IOCP_FN = IO_NAME||IO_TYPE
IO_OPT1 = 'ICP '
IO_OPT2 = 'DYN DESC1' IOCP_FN 'DESC2' TODAY
SAY;SAY;SAY 'BUILDING IOCP FILE' IOCP_FN TODAY '. . .'
IF WRITE_IT THEN DO
'IOCP' IOCP_FN '(' IO_OPT1 'WRT'||IO_TYPE IO_OPT2
END
ELSE DO
'IOCP' IOCP_FN '(' IO_OPT1 'NOWRT' IO_OPT2
END
EXIT
Larry
________________________________
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Hilliard, Chris
Sent: Monday, December 03, 2007 10:06 AM
To: [email protected]
Subject: HCD question
I'm currently installing z/VM 5.3. I have two other LPARs on this box
running z/OS 1.4 and z/OS 1.7. Can I maintain (either temporarily or
permanently) my hardware/software configuration for the z/VM LPAR using
HCD under z/OS? I have a huge learning curve ahead of me and not having
to learn z/VM's HCD would lighten my load a bit.
Any words of wisdom from the community?
Thanks in advance...Chris