|
HP OpenVMS systems documentation |
Previous | Contents | Index |
Example 3-2 shows the full kit referenced by Example 3-1.
Example 3-2 PDF for a Full Kit |
---|
product HP AXPVMS FORRTL V7.1-427 full ;(1) if (<software HP AXPVMS VMS version minimum V7.0>) ;(2) file [SYSLIB]FOR$DEC$FORRTL.EXE source [SYSLIB]FOR$DEC$FORRTL-V70.EXE ; file [SYSLIB]FOR$DEC$FORRTL.OBJ source [SYSLIB]FOR$DEC$FORRTL-V70.OBJ ; else ; file [SYSLIB]FOR$DEC$FORRTL.EXE source [SYSLIB]FOR$DEC$FORRTL-V61.EXE ; file [SYSLIB]FOR$DEC$FORRTL.OBJ source [SYSLIB]FOR$DEC$FORRTL-V61.OBJ ; end if ; if (<software DEC AXPVMS VMS version below V7.1>) ; file [SYSLIB]FOR$NXTAFTR.OBJ ; end if ; file [SYSUPD]FOR$INSTALL_FORRTL.COM ; file [SYSTEST]FOR$RTL_IVP.COM ; file [SYSTEST]FOR$RTL_IVP.OBJ ; file [SYSHLP]FORRTL.RELEASE_NOTES release notes ; information RELEASE_NOTES phase after ; information POST_INSTALL phase after ; execute install "@PCSI$DESTINATION:[SYSUPD]FOR$INSTALL_FORRTL INSTALL" remove "@PCSI$DESTINATION:[SYSUPD]FOR$INSTALL_FORRTL REMOVE";(3) execute test "@PCSI$DESTINATION:[SYSTEST]FOR$RTL_IVP" ; end product ; |
The operating system kit provides operating system software, such as OpenVMS. The PDF for an operating system kit must contain a PRODUCT statement with the OPERATING SYSTEM keyword and an END PRODUCT statement as shown in the following example:
product DEC AXPVMS VMS V7.2 operating system ; . . . end product ; |
The operating system kit has the following characteristics:
Example 3-3 shows an operating system kit.
Example 3-3 PDF for an Operating System Kit |
---|
product HP AXPVMS VMS V7.1 operating system ;(1) upgrade version minimum V6.1 version below A7.2;(2) . . . directory [SYSEXE] ;(3) directory [SYSFONT] ; directory [SYSFONT.DECW] ; directory [SYSFONT.DECW.100DPI] ; . . . file [SYSEXE]COPY.EXE generation 40069227 ; (4) file [SYSEXE]CREATE.EXE generation 40069227 ; file [SYSEXE]CREATEFDL.EXE generation 40069227 ; file [SYSEXE]DCL.EXE generation 40069227 ; . . . file [SYSMGR]SYLOGIN.TEMPLATE generation 40069227 ; file [SYSMGR]SYLOGIN.COM generation 40069227 (5) source [SYSMGR]SYLOGIN.TEMPLATE write ; . . . option ACCOUNTING ; file [SYSEXE]ACC.EXE generation 40069227 ; end option ; option UTILITIES ; (6) option MAIL ; file [SYSEXE]MAIL.COM generation 40069227 ; file [SYSEXE]MAIL.EXE generation 40069227 ; file [SYSEXE]MAIL_OLD.EXE generation 40069227 ; file [SYSEXE]MAILEDIT.COM generation 40069227 ; file [SYSEXE]MAIL_SERVER.EXE generation 40069227 ; file [SYSHLP]MAILHELP.HLB generation 40069227 ; end option ; . . . option DUMP ; file [SYSEXE]DUMP.EXE generation 40069227 ; end option ; option HELP_LIBRARY ; scope global ; file [SYSHLP]HELPLIB.HLB generation 40069227 release merge ;(7) end scope ; end option ; end option ; . . . option REMOVE_OBSOLETE ; remove ; (8) file [SYSLIB]LIBOTS.OLB ; file [SYSLIB]EDTSHR_TV.EXE ; end remove ; end option ; end product ; |
The platform kit installs a product suite, which is an integrated set of software products. It may provide files that are common to all products in the suite, or it may not provide any files. It does, however, contain software references to one or more other products. These references can be either required, optional, or a combination of required and optional. For example, the OPENVMS platform kit always installs the OpenVMS operating system product and asks whether to optionally install system integrated products such as HP DECwindows Motif and HP TCP/IP Services for OpenVMS.
The PDF for a platform kit must contain a PRODUCT statement with the keyword PLATFORM and an END PRODUCT statement, as shown in the following example:
product HP AXPVMS OPENVMS V7.2 platform ; . . . end product ; |
The platform kit has the following characteristics:
Example 3-4 shows a platform kit.
Example 3-4 PDF for a Platform Kit |
---|
product HP AXPVMS OPENVMS F7.1 platform ; (1) upgrade version minimum A7.1 version below V7.2; (2) software HP AXPVMS VMS version required F7.1 ; (3) option DWMOTIF_KIT ; (4) software HP AXPVMS DWMOTIF version minimum V1.2-4 ; end option ; option DECNET_OSI_KIT ; software HP AXPVMS DECNET_OSI version minimum K7.1 ; end option ; option UCX_KIT ; software HP AXPVMS UCX version minimum V4.1-12 ; end option ; end product ; |
Previous | Next | Contents | Index |