-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the default volser naming from numeric (111111) to alpha (AAAA…
…AA) in sysgen.py. Using numeric volsers limits the number of DASD creatable in a step to 9 volumes, and the final customization step already creates 8 volumes as it is. Using alphabetical volsers at least stretches that list to 26 from 9. In the future, this should include a bounds check to make sure we don't do past ZZZZZZ or possibly revert back to "real" numeric volsers like 000001++ or something.
- Loading branch information
Joe George
committed
Nov 25, 2021
1 parent
5a0efde
commit 584eaed
Showing
5 changed files
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
SPOOL0 JOB 'INITIALIZE MVS STARTER SYSTEM SPOOL VOLUME' | ||
MSG TODEV=1052,TOADDR=009 | ||
DADEF TODEV=3330,TOADDR=151,IPL=NO,VOLID=222222,BYPASS=YES | ||
DADEF TODEV=3330,TOADDR=151,IPL=NO,VOLID=BBBBBB,BYPASS=YES | ||
VLD NEWVOLID=SPOOL0,OWNERID=HERCULES | ||
VTOCD STRTADR=1,EXTENT=5 | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
START1 JOB 'INITIALIZE MVS STARTER SYSTEM RES VOLUME' | ||
MSG TODEV=1052,TOADDR=009 | ||
DADEF TODEV=3330,TOADDR=150,IPL=NO,VOLID=111111,BYPASS=YES | ||
DADEF TODEV=3330,TOADDR=150,IPL=NO,VOLID=AAAAAA,BYPASS=YES | ||
VLD NEWVOLID=START1,OWNERID=HERCULES | ||
VTOCD STRTADR=1,EXTENT=5 | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters