1 /* BEGIN INCLUDE FILE ... config_deck_cards_.incl.pl1 */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(85-09-09,Farley), approve(85-09-09,MCR6979),
 5      audit(86-01-17,CLJones), install(86-03-21,MR12.0-1033):
 6      Add Fips card.
 7   2) change(86-01-07,Fawcett), approve(86-05-13,MCR7383),
 8      audit(86-05-14,LJAdams), install(86-07-18,MR12.0-1098):
 9      Change the part and root cards -drive from OCTAL to STRING for subvolume
10      support.
11                                                    END HISTORY COMMENTS */
12 /* Written August of 1984 by Allen Ball. */
13 /* Modified Feb 15, 185 by Fawcett to add Fips card */
14 
15           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */
16           /*                                                                                        */
17           /* Note:  Whenever a card is added or deleted from this include file the dimension of     */
18           /*        the array must be adjusted accordingly.                                         */
19           /*                                                                                        */
20           /*        If a field is to be empty then put "emp" in that field.  Un filled fields are   */
21           /*        assumed to be empty.  If there is no subname on the card then "emp" must        */
22           /*        appear in that field.                                                           */
23           /*                                                                                        */
24           /*        If there is a repeating group of fields on the card then these fields MUST      */
25           /*        appear last on the card and they MUST appear like:                              */
26           /*                                                                                        */
27           /*                 root emp repeat 7 -subsys STRING -drive STRING                         */
28           /*                                                                                        */
29           /*        and NOT:                                                                        */
30           /*                                                                                        */
31           /*                 root emp -subsys STRING -drive STRING -subsys STRING -drive STRING ... */
32           /*                                                                                        */
33           /*        CHAR means a field of one ascii character.                                      */
34           /*        DECIMAL means a decimal number will be in that field.                           */
35           /*        OCTAL means a octal nuber will be in that field.                                */
36           /*        STRING means a 4 character ascii string will go in that field.                  */
37           /*                                                                                        */
38           /*                                                                                        */
39           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */
40 
41 dcl config_deck_cards (25) char (210) init (
42 
43 "chnl  emp minimum 4 -subsys STRING repeat 4 -iom CHAR -chn OCTAL -nchan OCTAL",
44 "clok  emp minimum 2 -delta OCTAL -zone STRING -boot_delta OCTAL",
45 "cpu   emp minimum 5 -tag CHAR -port OCTAL -state STRING -type STRING -model OCTAL -cache OCTAL -exp_port CHAR",
46 "prph  fnp minimum 5 -device STRING -iom CHAR -chn OCTAL -model DECIMAL -state STRING",
47 "ipc   emp minimum 4 -type STRING -iom CHAR -chn OCTAL -nchan OCTAL",
48 "iom   emp minimum 4 -tag CHAR -port OCTAL -model STRING -state STRING",
49 "mem   emp minimum 3 -port CHAR -size OCTAL -state STRING",
50 "mpc   emp minimum 5 -ctlr STRING -model OCTAL repeat 4 -iom CHAR -chn OCTAL -nchan OCTAL",
51 "parm  emp",
52 "part  emp minimum 3 -part STRING -subsys STRING -drive STRING -real_name STRING",
53 "prph  ccu minimum 4 -device STRING -iom CHAR -chn OCTAL -model OCTAL",
54 "prph  dsk minimum 6 -subsys STRING -iom CHAR -chn OCTAL -nchan OCTAL repeat 5 -model OCTAL -number OCTAL",
55 "prph  opc minimum 6 -device STRING -iom CHAR -chn OCTAL -model OCTAL -ll OCTAL -state STRING -option STRING",
56 "prph  prt minimum 5 -device STRING -iom CHAR -chn OCTAL -model OCTAL -train OCTAL -ll OCTAL",
57 "prph  pun minimum 4 -device STRING -iom CHAR -chn OCTAL -model OCTAL",
58 "prph  rdr minimum 4 -device STRING -iom CHAR -chn OCTAL -model OCTAL",
59 "prph  tap minimum 6 -subsys STRING -iom CHAR -chn OCTAL -nchan OCTAL repeat 5 -model OCTAL -number OCTAL",
60 "root  emp minimum 2 repeat 7 -subsys STRING -drive STRING",
61 "salv  emp",
62 "schd  emp minimum 4 -wsf OCTAL -tefirst OCTAL -telast OCTAL -timax OCTAL -mine OCTAL -maxe OCTAL -maxmaxe OCTAL",
63 "sst   emp minimum 4 -4k OCTAL -16k OCTAL -64k OCTAL -256k OCTAL",
64 "tbls  emp minimum 2",
65 "tcd   emp minimum 2 -apt OCTAL -itt OCTAL",
66 "udsk  emp minimum 2 -subsys STRING -nchan OCTAL repeat 6 -drive OCTAL -number OCTAL",
67 "USER  emp");
68 
69 
70 /* END INCLUDE FILE ... config_deck_cards_.incl.pl1 */