Home Page  ·  Up 1 Level  ·  Site Map  ·  Send Us Mail
Making a CD-XA disc using Master
! Example Input File for the 'MASTER' Disc Builder
!========================================
! CDi - XA Disc Image
!
! 1) Define the Various Files that are Involved in the Disc Image
!    ------------------------------------------------------------
! Bold names below indicate changeable items. ! = comments.   Be sure to use quotes wherever they are indicated.
! Type in non-bold items exactly as shown below.  Easy way:  save copy of this file ,  then type in the changes to
! the bold text as needed.  Script must be saved in basic ASCII format.
options: -xa -g                	! Creates xa disc, and doesn't get too fussy about green compliance.
define album "YELLOW FILES"	 ! Album name can be anything, 32 characters max. 
publisher  "Acme Inc."
preparer   "John Doe"
volume "XA Disc" in "XA.cd"		 ! Volume name can be anything, 32 characters max.  
                               	! Disk image named according to OS9 naming conventions.
                               ! Use absolute path for image file if you do not want it placed in current directory.
! Define YOUR Files Here
<def>
 
! pastes in all the yellow files listed in the defs file.
! Eachline in defs has the structure 
! yellow file fileidentifier from "filename"
! e.g. yellow file file00001 from "../example/text.txt"
!  2) Define the directory structure on the disc.
!    ------------------------------------------------------------
    "YELLOW"					!Caps. Directory name, 8 characters max.
    {
<dir>
    }    
						
! pastes in all the cdi-xa files listed in the dir file.
! Each line in defs has the structure 
! "XA_FILE;1" protection 0x555  from fileidentifier
! e.g.
! "EXAMPLE"
! {
!  "TEXT.TXT;1" protection 0x555 from file00001 
  	       
! }
! There must be a corresponding entry for all the files listed
! above.  XA_FILE files must use all caps, must conform to 8.3 naming, 
! must have filename extension, and ;1 and quotes are required! Use the same
! names for identifiers as those used above. Use the format
!  "DIR_NAME"
! {
!  "XA_FILE(S);1" protection 0x555 from fileidentifier
! }
! to make directories on the xa cd.
! You can also define all your files individually in the master script, instead of using the def and dir files.  See the CD-i/XA Bridge Disc Script
! >>>>End of Master Script <<<<
		
! Save the script, type the command master scriptname to build the image.
Home Page  ·  Up 1 Level  ·  Site Map  ·  Send Us Mail